VeeCam
A virtual camera Chrome extension.
What is VeeCam?
VeeCam is a Chrome extension developed by dokasto.labs, and its main feature is "A virtual camera Chrome extension.".
Extension Screenshots
Download VeeCam Extension CRX File
Download VeeCam extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Veecam lets you adjust how you appear in videos in a video conference call.
Extension Basic Information
Name | VeeCam |
ID | ndmjmamencpnepijcpkekefjpjfldidk |
Official URL | https://chromewebstore.google.com/detail/veecam/ndmjmamencpnepijcpkekefjpjfldidk |
Description | A virtual camera Chrome extension. |
File Size | 1.62 MB |
Installation Count | 114 |
Current Version | 0.0.1 |
Last Updated | 2022-11-01 |
Publish Date | 2022-11-01 |
Developer | dokasto.labs |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/Udokah/veecam |
Help Page URL | https://github.com/Udokah/veecam |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "VeeCam", "description": "A virtual camera Chrome extension.", "version": "0.0.1", "minimum_chrome_version": "88", "manifest_version": 3, "background": { "service_worker": "build\/background.js" }, "permissions": [ "storage" ], "action": { "default_popup": "build\/popup.html" }, "options_page": "build\/options.html", "content_scripts": [ { "matches": [ "https:\/\/*\/*" ], "js": [ "build\/contentScript.js" ], "run_at": "document_start", "all_frames": true } ], "web_accessible_resources": [ { "resources": [ "\/build\/*" ], "matches": [ "https:\/\/*\/*" ] } ] } |