Screen Capturing
This WebRTC screen capturing extension can be used within any WebRTC library/application!
What is Screen Capturing?
Screen Capturing is a Chrome extension developed by https://appinux.com, and its main feature is "This WebRTC screen capturing extension can be used within any WebRTC library/application!".
Extension Screenshots
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
Developer tool for screen sharing by Appinux A/S
Extension Basic Information
Name | Screen Capturing |
ID | hccmdbhopgjapkajcmdegkpplnahngnl |
Official URL | https://chromewebstore.google.com/detail/screen-capturing/hccmdbhopgjapkajcmdegkpplnahngnl |
Description | This WebRTC screen capturing extension can be used within any WebRTC library/application! |
File Size | 5.33 KB |
Installation Count | 87 |
Current Version | 3.5 |
Last Updated | 2019-04-26 |
Publish Date | 2019-04-26 |
Developer | https://appinux.com |
Payment Type | free |
Extension Website | https://appinux.com |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Screen Capturing", "author": "Muaz Khan", "version": "3.5", "manifest_version": 2, "minimum_chrome_version": "34", "description": "This WebRTC screen capturing extension can be used within any WebRTC library\/application!", "homepage_url": "http:\/\/www.appinux.com\/", "background": { "scripts": [ "background-script.js" ], "persistent": false }, "content_scripts": [ { "js": [ "content-script.js" ], "all_frames": true, "run_at": "document_start", "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "icons": { "48": "icon.png" }, "permissions": [ "desktopCapture" ], "web_accessible_resources": [ "icon.png" ] } |