Multiparty-Meeting Screen Sharing
This extension allows you to share your screen in the multiparty web-meeting you are in.
Co je Multiparty-Meeting Screen Sharing?
Multiparty-Meeting Screen Sharing je rozšíření Chrome vyvinuté https://akademia.no, a jeho hlavní funkcí je „This extension allows you to share your screen in the multiparty web-meeting you are in.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Multiparty-Meeting Screen Sharing
Stáhněte si soubory rozšíření Multiparty-Meeting Screen Sharing ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
Open source extension for sharing your screen in web meetings.
Základní Informace o Rozšíření
Název | Multiparty-Meeting Screen Sharing |
ID | fckajcjdaabdgnbdcmhhebdglogjfodi |
Oficiální URL | https://chromewebstore.google.com/detail/multiparty-meeting-screen/fckajcjdaabdgnbdcmhhebdglogjfodi |
Popis | This extension allows you to share your screen in the multiparty web-meeting you are in. |
Velikost souboru | 11.19 KB |
Počet instalací | 95 |
Aktuální Verze | 0.1.1 |
Poslední Aktualizace | 2018-09-18 |
Datum Vydání | 2018-09-18 |
Vývojář | https://akademia.no |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/havfo/multiparty-meeting-extension |
Podporované Jazyky | 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" } ] } |