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.';
});