VLR Screen Capturing
This WebRTC screen capturing extension can be used within any WebRTC library/application! Use getScreenId.js!
What is VLR Screen Capturing?
VLR Screen Capturing is a Chrome extension developed by ward.ye, and its main feature is "This WebRTC screen capturing extension can be used within any WebRTC library/application! Use getScreenId.js!".
Extension Screenshots
Download VLR Screen Capturing Extension CRX File
Download VLR 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
application's screen on any HTTPs domain! Even audio+tab! This WebRTC screen capturing extension can be used in all domains, in all WebRTC applications :) It merely captures the screen and returns sourceId. Your application can use that sourceId to use screen stream.
Extension Basic Information
Name | |
ID | jnbggkpmcolbjifdboognjfadicchgoa |
Official URL | https://chrome.google.com/webstore/detail/vlr-screen-capturing/jnbggkpmcolbjifdboognjfadicchgoa |
Description | This WebRTC screen capturing extension can be used within any WebRTC library/application! Use getScreenId.js! |
File Size | 7.8 KB |
Installation Count | 11 |
Current Version | 3.3 |
Last Updated | 2016-04-19 |
Publish Date | 2016-04-19 |
Developer | ward.ye |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "VLR Screen Capturing", "author": "Nabil Mohammed", "version": "3.3", "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:\/\/vlr.taalim.us\/deskshare\/chrome\/", "background": { "scripts": [ "background-script.js" ], "persistent": false }, "content_scripts": [ { "js": [ "content-script.js" ], "all_frames": true, "run_at": "document_start", "matches": [ "*:\/\/vlr.taalim.us\/*" ] } ], "icons": { "48": "icon.png" }, "permissions": [ "desktopCapture" ], "web_accessible_resources": [ "icon.png" ] } |