Multiparty-Meeting Screen Sharing
This extension allows you to share your screen in the multiparty web-meeting you are in.
Cos'è Multiparty-Meeting Screen Sharing?
Multiparty-Meeting Screen Sharing è un'estensione di Chrome sviluppata da https://akademia.no, e la sua funzione principale è "This extension allows you to share your screen in the multiparty web-meeting you are in.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Multiparty-Meeting Screen Sharing
Scarica i file di estensione Multiparty-Meeting 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
Open source extension for sharing your screen in web meetings.
Informazioni di Base sull'Estensione
Nome | Multiparty-Meeting Screen Sharing |
ID | fckajcjdaabdgnbdcmhhebdglogjfodi |
URL Ufficiale | https://chromewebstore.google.com/detail/multiparty-meeting-screen/fckajcjdaabdgnbdcmhhebdglogjfodi |
Descrizione | This extension allows you to share your screen in the multiparty web-meeting you are in. |
Dimensione del File | 11.19 KB |
Conteggio Installazioni | 95 |
Versione Corrente | 0.1.1 |
Ultimo Aggiornamento | 2018-09-18 |
Data di Pubblicazione | 2018-09-18 |
Sviluppatore | https://akademia.no |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/havfo/multiparty-meeting-extension |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Multiparty-Meeting Screen Sharing", "short_name": "Screen Sharing", "version": "0.1.1", "manifest_version": 2, "description": "This extension allows you to share your screen in the multiparty web-meeting you are in.", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "desktopCapture", "tabs", "https:\/\/*\/*" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/*\/*" ], "js": [ "content.js" ], "all_frames": true, "run_at": "document_end" } ] } |