Screen Share Application
Application Allows to share you screen
What is Screen Share Application?
Screen Share Application is a Chrome extension developed by https://pruffme.com, and its main feature is "Application Allows to share you screen".
Extension Screenshots
Download Screen Share Application Extension CRX File
Download Screen Share Application 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
Приложение для публикации экрана на сайте http://pruffme.com
Extension Basic Information
Name | Screen Share Application |
ID | fmajmkhjmknoegfgdhpiflefolclojef |
Official URL | https://chromewebstore.google.com/detail/screen-share-application/fmajmkhjmknoegfgdhpiflefolclojef |
Description | Application Allows to share you screen |
File Size | 23.75 KB |
Installation Count | 5,881 |
Current Version | 1.6 |
Last Updated | 2017-05-23 |
Publish Date | 2017-05-23 |
Rating | 5.00/5 Total 2 Ratings |
Developer | https://pruffme.com |
[email protected] | |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "manifest_version": 2, "minimum_chrome_version": "34", "name": "Screen Share Application", "permissions": [ "desktopCapture" ], "short_name": "Screen Share Application", "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "1.6", "background": { "scripts": [ "background-script.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*.pruffme.com\/*", "*:\/\/localhost\/*" ], "js": [ "content-script.js" ], "all_frames": true, "run_at": "document_end" } ], "description": "Application Allows to share you screen", "externally_connectable": { "matches": [ "*:\/\/*.pruffme.com\/*", "*:\/\/localhost\/*" ] }, "icons": { "128": "icon_128.png", "16": "icon_16.png", "48": "icon_48.png" }, "web_accessible_resources": [ "icon.png" ], "browser_action": { "default_icon": "icon_16.png" } } |