Deny Google Meet Join Requests

Denys all Google Meet join requests

Deny Google Meet Join Requests क्या है?

Deny Google Meet Join Requests hcpss.ops द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Denys all Google Meet join requests"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Deny Google Meet Join Requests एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
आधिकारिक 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
ईमेल [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
}