Phone.com Screen Sharing
The extension allows you to share your screen.
Cos'è Phone.com Screen Sharing?
Phone.com Screen Sharing è un'estensione di Chrome sviluppata da https://video.phone.com, e la sua funzione principale è "The extension allows you to share your screen.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Phone.com Screen Sharing
Scarica i file di estensione Phone.com Screen Sharing in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Installing the extension is required so you can share your screen.
Informazioni di Base sull'Estensione
Nome | Phone.com Screen Sharing |
ID | blhhkfbffffbgablmhdchnmgcdejggon |
URL Ufficiale | https://chromewebstore.google.com/detail/phonecom-screen-sharing/blhhkfbffffbgablmhdchnmgcdejggon |
Descrizione | The extension allows you to share your screen. |
Dimensione del File | 64.34 KB |
Conteggio Installazioni | 295 |
Versione Corrente | 1.2 |
Ultimo Aggiornamento | 2018-09-21 |
Data di Pubblicazione | 2018-09-21 |
Sviluppatore | https://video.phone.com |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://video.phone.com/ |
Lingue Supportate | 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" ] } |