Multiparty-Meeting Screen Sharing
This extension allows you to share your screen in the multiparty web-meeting you are in.
Co to jest Multiparty-Meeting Screen Sharing?
Multiparty-Meeting Screen Sharing to rozszerzenie Chrome opracowane przez https://akademia.no, a jego główną funkcją jest „This extension allows you to share your screen in the multiparty web-meeting you are in.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Multiparty-Meeting Screen Sharing
Pobierz pliki rozszerzeń Multiparty-Meeting Screen Sharing w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Open source extension for sharing your screen in web meetings.
Podstawowe informacje o rozszerzeniu
Nazwa | Multiparty-Meeting Screen Sharing |
ID | fckajcjdaabdgnbdcmhhebdglogjfodi |
Oficjalny URL | https://chromewebstore.google.com/detail/multiparty-meeting-screen/fckajcjdaabdgnbdcmhhebdglogjfodi |
Opis | This extension allows you to share your screen in the multiparty web-meeting you are in. |
Rozmiar pliku | 11.19 KB |
Liczba instalacji | 95 |
Aktualna Wersja | 0.1.1 |
Ostatnia Aktualizacja | 2018-09-18 |
Data Publikacji | 2018-09-18 |
Deweloper | https://akademia.no |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/havfo/multiparty-meeting-extension |
Obsługiwane Języki | 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" } ] } |