document.write('

The purpose of this page is to access your camera and microphone.

'); document.write('

You can REMOVE i.e. DELETE camera permissions anytime on this page:

'); document.write('
chrome://settings/content/camera?search=camera');

var constraints = {
    audio: true,
    video: true
};

navigator.mediaDevices.getUserMedia(constraints).then(function(stream) {
    document.write('

'); document.querySelector('h1').innerHTML = 'Now you can close this page and click extension icon again.' }).catch(function() { document.querySelector('h1').innerHTML = 'Unable to capture your camera and microphone.'; });