WebStream WebRTC Screen Capture
This extension allows WebStream WebRTC connections to use the screen as a video source.
What is WebStream WebRTC Screen Capture?
WebStream WebRTC Screen Capture is a Chrome extension developed by Unknown, and its main feature is "This extension allows WebStream WebRTC connections to use the screen as a video source.".
Extension Screenshots
Download WebStream WebRTC Screen Capture Extension CRX File
Download WebStream WebRTC Screen Capture 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
Extension Basic Information
Name | WebStream WebRTC Screen Capture |
ID | aiiaoeidafjmbmncceigjjbhoopljehf |
Official URL | https://chromewebstore.google.com/detail/webstream-webrtc-screen-c/aiiaoeidafjmbmncceigjjbhoopljehf |
Description | This extension allows WebStream WebRTC connections to use the screen as a video source. |
File Size | 395 KB |
Installation Count | 23 |
Current Version | 1.0.1 |
Last Updated | 2018-11-12 |
Publish Date | 2018-11-11 |
Rating | 5.00/5 Total 1 Ratings |
Developer | Unknown |
Payment Type | free |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "WebStream WebRTC Screen Capture", "version": "1.0.1", "description": "This extension allows WebStream WebRTC connections to use the screen as a video source.", "icons": { "16": "WebStream-16.png", "32": "WebStream-32.png", "48": "WebStream-48.png", "128": "WebStream-128.png" }, "author": "WebStream", "background": { "persistent": false, "scripts": [ "background.js" ] }, "content_scripts": [ { "js": [ "content.js" ], "all_frames": true, "run_at": "document_end", "matches": [ "*:\/\/*\/*" ] } ], "homepage_url": "https:\/\/teleconnect.care\/", "minimum_chrome_version": "34", "permissions": [ "desktopCapture" ], "web_accessible_resources": [ "WebStream-16.png", "WebStream-32.png", "WebStream-48.png", "WebStream-128.png" ] } |