Phone.com Screen Sharing
The extension allows you to share your screen.
Vad är Phone.com Screen Sharing?
Phone.com Screen Sharing är en Chrome-tillägg utvecklad av https://video.phone.com, och dess huvudfunktion är "The extension allows you to share your screen.".
Tilläggsskärmbilder
Ladda ner Phone.com Screen Sharing-förlängningens CRX-fil
Ladda ner Phone.com Screen Sharing-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Installing the extension is required so you can share your screen.
Grundläggande Information om Tillägg
Namn | Phone.com Screen Sharing |
ID | blhhkfbffffbgablmhdchnmgcdejggon |
Officiell webbadress | https://chromewebstore.google.com/detail/phonecom-screen-sharing/blhhkfbffffbgablmhdchnmgcdejggon |
Beskrivning | The extension allows you to share your screen. |
Filstorlek | 64.34 KB |
Antal Installationer | 295 |
Aktuell Version | 1.2 |
Senast Uppdaterad | 2018-09-21 |
Publiceringsdatum | 2018-09-21 |
Utvecklare | https://video.phone.com |
Betalningssätt | free |
Tilläggswebbplats | https://video.phone.com/ |
Stödda Språk | 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" ] } |