Multiparty-Meeting Screen Sharing
This extension allows you to share your screen in the multiparty web-meeting you are in.
什麼是Multiparty-Meeting Screen Sharing?
Multiparty-Meeting Screen Sharing是由https://akademia.no開發的Chrome擴展程式,該擴展的主要功能是“This extension allows you to share your screen in the multiparty web-meeting you are in.”。
擴展截圖
下載Multiparty-Meeting Screen Sharing擴展crx文件
下載Multiparty-Meeting Screen Sharing擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Open source extension for sharing your screen in web meetings.
擴展基本資訊
名稱 | Multiparty-Meeting Screen Sharing |
ID | fckajcjdaabdgnbdcmhhebdglogjfodi |
官方網址 | https://chromewebstore.google.com/detail/multiparty-meeting-screen/fckajcjdaabdgnbdcmhhebdglogjfodi |
簡介 | This extension allows you to share your screen in the multiparty web-meeting you are in. |
檔案大小 | 11.19 KB |
安裝次數 | 95 |
目前版本 | 0.1.1 |
更新時間 | 2018-09-18 |
上架時間 | 2018-09-18 |
開發者 | https://akademia.no |
付費類型 | free |
擴展官網 | https://github.com/havfo/multiparty-meeting-extension |
支援的語言 | 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" } ] } |