Screen Sharing
Capture full-screen or specific application's screen.
What is Screen Sharing?
Screen Sharing is a Chrome extension developed by https://engducate.com, and its main feature is "Capture full-screen or specific application's screen.".
Extension Screenshots
Download Screen Sharing Extension CRX File
Download Screen Sharing 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
To enable screen sharing on the following websites: - https://webrtc.ziotes.com/ - https://localhost:8443/ - https://engducate.com/ - https://ko.engducate.com/
Extension Basic Information
Name | Screen Sharing |
ID | aafipaghlllcbognnpmdplmpielpaepp |
Official URL | https://chromewebstore.google.com/detail/screen-sharing/aafipaghlllcbognnpmdplmpielpaepp |
Description | Capture full-screen or specific application's screen. |
File Size | 5.52 KB |
Installation Count | 124 |
Current Version | 1.4 |
Last Updated | 2018-11-28 |
Publish Date | 2018-11-27 |
Rating | 5.00/5 Total 1 Ratings |
Developer | https://engducate.com |
Payment Type | free |
Extension Website | https://engducate.com/ |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Screen Sharing", "author": "Emmanuel Joseph Perion", "version": "1.4", "manifest_version": 2, "minimum_chrome_version": "34", "description": "Capture full-screen or specific application's screen.", "homepage_url": "https:\/\/webrtc.ziotes.com\/", "background": { "scripts": [ "background-script.js" ], "persistent": false }, "content_scripts": [ { "js": [ "content-script.js" ], "all_frames": true, "run_at": "document_end", "matches": [ "https:\/\/webrtc.ziotes.com\/*", "https:\/\/localhost\/*", "https:\/\/engducate.com\/*", "https:\/\/ko.engducate.com\/*" ] } ], "icons": { "48": "icon.png" }, "permissions": [ "desktopCapture" ], "web_accessible_resources": [ "icon.png" ] } |