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”。

擴展截圖

screenshot

下載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 Deny Google Meet Join Requests
ID dccddkkncdbglmlfmfjcgmhbppgddkag
官方網址 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
電子郵箱 [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
}