Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can a chrome extension access a webcam?

I have done some research about deloping for chrome. Is it true that only apps (not extensions) accsess the webcam?

like image 203
user3367766 Avatar asked Mar 01 '14 09:03

user3367766


People also ask

What can a Chrome extension access?

Your tabs and browsing activity: The app or extension can see the URLs and titles of websites you visit. It can also open and close tabs and windows, as well as navigate to new pages in open tabs and windows. Your physical location: The app or extension can use the current location of your computer or device.

Can a browser access your camera?

Every web browser needs specific permissions enabled to allow the program to access your microphone and webcam. You can deny access to your mic and camera to prevent your browser from listening or watching you.

Why can't chrome access my webcam?

Check your browser permissions On Chrome or Microsoft Edge: Open the menu (the three dots ⋮) in the top, right-hand corner of your browser. Select Settings > Privacy & Security > Site Settings. Ensure that your Camera and Microphone both have Ask before accessing set to ON.

Does Chrome have a webcam app?

Camera. Take photos and record videos with your camera. (If you are using a Chromebook, this app is already built-in and you do not need to install it.) An easy-to-use Camera app for taking photos and recording videos.


1 Answers

Any web page can access the webcam (with user permission) via the HTML5 getUserMedia API as long as it has the https protocol.

https://davidwalsh.name/browser-camera

That would include extensions, apps, and ordinary web pages.

like image 197
slim Avatar answered Sep 24 '22 18:09

slim