Deny Google Meet Join Requests

Denys all Google Meet join requests

Vad är Deny Google Meet Join Requests?

Deny Google Meet Join Requests är en Chrome-tillägg utvecklad av hcpss.ops, och dess huvudfunktion är "Denys all Google Meet join requests".

Tilläggsskärmbilder

screenshot

Ladda ner Deny Google Meet Join Requests-förlängningens CRX-fil

Ladda ner Deny Google Meet Join Requests-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Deny Google Meet Join Requests Deny Google Meet Join Requests
ID dccddkkncdbglmlfmfjcgmhbppgddkag
Officiell webbadress https://chromewebstore.google.com/detail/deny-google-meet-join-req/dccddkkncdbglmlfmfjcgmhbppgddkag
Beskrivning Denys all Google Meet join requests
Filstorlek 25.1 KB
Antal Installationer 4,329
Aktuell Version 1.4
Senast Uppdaterad 2020-10-23
Publiceringsdatum 2020-06-15
Betyg 3.40/5 Totalt 5 Betyg
Utvecklare hcpss.ops
E-post [email protected]
Betalningssätt free
Stödda Språk 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
}