Multiparty-Meeting Screen Sharing
This extension allows you to share your screen in the multiparty web-meeting you are in.
Wat is Multiparty-Meeting Screen Sharing?
Multiparty-Meeting Screen Sharing is een Chrome-extensie ontwikkeld door https://akademia.no, en de belangrijkste functie is "This extension allows you to share your screen in the multiparty web-meeting you are in.".
Extensie Screenshots
Download het CRX-bestand van de extensie Multiparty-Meeting Screen Sharing
Download Multiparty-Meeting Screen Sharing-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Open source extension for sharing your screen in web meetings.
Basisinformatie over de Extensie
Naam | Multiparty-Meeting Screen Sharing |
ID | fckajcjdaabdgnbdcmhhebdglogjfodi |
Officiële URL | https://chromewebstore.google.com/detail/multiparty-meeting-screen/fckajcjdaabdgnbdcmhhebdglogjfodi |
Beschrijving | This extension allows you to share your screen in the multiparty web-meeting you are in. |
Bestandsgrootte | 11.19 KB |
Aantal Installaties | 95 |
Huidige Versie | 0.1.1 |
Laatst Bijgewerkt | 2018-09-18 |
Publicatiedatum | 2018-09-18 |
Ontwikkelaar | https://akademia.no |
Betalingswijze | free |
Extensiewebsite | https://github.com/havfo/multiparty-meeting-extension |
Ondersteunde Talen | 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" } ] } |