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 |
公式URL | 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" } ] } |