Deny Google Meet Join Requests
Denys all Google Meet join requests
Deny Google Meet Join Requestsとは何ですか?
Deny Google Meet Join Requestsはhcpss.opsによって開発されたChromeの拡張機能で、その主な機能は「Denys all Google Meet join requests」です。
拡張機能のスクリーンショット
Deny Google Meet Join Requests拡張機能のCRXファイルをダウンロード
Deny Google Meet Join Requests拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Toggle "Deny join requests" to prevent external browser and app users from joining your meeting. Any requests to join will be immediately rejected and the request popups will be hidden. For telephone participants; while "Hang up new callers" is off, the extension accumulates a list of allowed anonymous callers. When "Hang up new callers" is on, any anonymous caller not in the list will be removed from the meeting. Toggle "Turn off Quick Access by default" to automatically turn off quick access every time you start a meeting.
拡張機能の基本情報
名前 | Deny Google Meet Join Requests |
ID | dccddkkncdbglmlfmfjcgmhbppgddkag |
公式URL | https://chromewebstore.google.com/detail/deny-google-meet-join-req/dccddkkncdbglmlfmfjcgmhbppgddkag |
説明 | Denys all Google Meet join requests |
ファイルサイズ | 25.1 KB |
インストール数 | 4,329 |
現在のバージョン | 1.4 |
最終更新日 | 2020-10-23 |
公開日 | 2020-06-15 |
評価 | 3.40/5 合計 5 レビュー |
開発者 | hcpss.ops |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Deny Google Meet Join Requests", "version": "1.4", "description": "Denys all Google Meet join requests", "permissions": [ "declarativeContent", "activeTab", "webRequest", "webRequestBlocking", "storage", "*:\/\/www.gstatic.com\/meet\/sounds\/knock_*", "*:\/\/www.gstatic.com\/meet\/sounds\/join_call_*" ], "background": { "persistent": true, "scripts": [ "background.js" ] }, "content_scripts": [ { "js": [ "script.js" ], "matches": [ "https:\/\/meet.google.com\/*" ] } ], "page_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" } }, "icons": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "manifest_version": 2 } |