Phone.com Screen Sharing
The extension allows you to share your screen.
What is Phone.com Screen Sharing?
Phone.com Screen Sharing is a Chrome extension developed by https://video.phone.com, and its main feature is "The extension allows you to share your screen.".
Extension Screenshots
Download Phone.com Screen Sharing Extension CRX File
Download Phone.com 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
Installing the extension is required so you can share your screen.
Extension Basic Information
Name | Phone.com Screen Sharing |
ID | blhhkfbffffbgablmhdchnmgcdejggon |
Official URL | https://chromewebstore.google.com/detail/phonecom-screen-sharing/blhhkfbffffbgablmhdchnmgcdejggon |
Description | The extension allows you to share your screen. |
File Size | 64.34 KB |
Installation Count | 295 |
Current Version | 1.2 |
Last Updated | 2018-09-21 |
Publish Date | 2018-09-21 |
Developer | https://video.phone.com |
Payment Type | free |
Extension Website | https://video.phone.com/ |
Supported Languages | en |
manifest.json | |
{ "name": "Phone.com Screen Sharing", "author": "Phone.com Inc.", "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "1.2", "manifest_version": 2, "minimum_chrome_version": "34", "description": "The extension allows you to share your screen.", "homepage_url": "https:\/\/meet.phone.com", "background": { "scripts": [ "background-script.js" ], "persistent": false }, "content_scripts": [ { "js": [ "content-script.js" ], "all_frames": true, "matches": [ "https:\/\/*.phone.com\/*" ] } ], "icons": { "16": "phone-logo16.png", "48": "phone-logo48.png", "128": "phone-logo128.png" }, "permissions": [ "desktopCapture" ], "web_accessible_resources": [ "icon.png" ] } |