Screen Capturing
This WebRTC screen capturing extension can be used within any WebRTC library/application! Use getScreenId.js!
What is Screen Capturing?
Screen Capturing is a Chrome extension developed by https://www.brainmeasures.com, and its main feature is "This WebRTC screen capturing extension can be used within any WebRTC library/application! Use getScreenId.js!".
Download Screen Capturing Extension CRX File
Download Screen Capturing 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
Brainmeasures Screen Sharing
Extension Basic Information
Name | Screen Capturing |
ID | imajhnndgfbilappeocjbdgemddgiake |
Official URL | https://chromewebstore.google.com/detail/screen-capturing/imajhnndgfbilappeocjbdgemddgiake |
Description | This WebRTC screen capturing extension can be used within any WebRTC library/application! Use getScreenId.js! |
File Size | 10.55 KB |
Installation Count | 108 |
Current Version | 4.1 |
Last Updated | 2018-01-13 |
Publish Date | 2018-01-13 |
Rating | 5.00/5 Total 2 Ratings |
Developer | https://www.brainmeasures.com |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Screen Capturing", "author": "Muaz Khan", "version": "4.1", "manifest_version": 2, "minimum_chrome_version": "34", "description": "This WebRTC screen capturing extension can be used within any WebRTC library\/application! Use getScreenId.js!", "homepage_url": "https:\/\/www.brainmeasures.com\/", "background": { "scripts": [ "background-script.js" ], "persistent": false }, "content_scripts": [ { "js": [ "content-script.js" ], "all_frames": true, "run_at": "document_end", "matches": [ "https:\/\/www.brainmeasures.com\/*" ] } ], "icons": { "48": "icon.png" }, "browser_action": { "default_icon": "icon.png" }, "permissions": [ "desktopCapture" ], "web_accessible_resources": [ "icon.png" ] } |