Google Meet Bomb Guard

For Organizations using Google Meet to block unwanted invitation requests from outside organizations/generic gmail accounts

Google Meet Bomb Guardคืออะไร?

Google Meet Bomb Guard เป็นส่วนขยายของ Chrome ที่พัฒนาโดย zerovirusexe.productions และคุณลักษณะหลักของมันคือ "For Organizations using Google Meet to block unwanted invitation requests from outside organizations/generic gmail accounts"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Google Meet Bomb Guard

ดาวน์โหลดไฟล์ส่วนขยาย Google Meet Bomb Guard ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        For Google Organizations (such as schools and businesses with a premium G-Suite account). This extension prevents unwanted entry of outside organizations or random users in a Google Meet call. Otherwise known as "Meet Bombing", the goal of this tool prevents these occurrences from happening.

This is very much still a WIP, and I hope people can leave useful feedback for me!

Some things planned for the future:
• Stop the flashing black screen from appearing when the extension blocks foreign participants
• Add a toggle for enabling the app on or off within the popup menu

And, later on:
• Prevent the error message coming up related to not getting certain sound effects
• Adding a filtering system to allow specific names to go through and allow the dialog box to display if the host of the call will want that user to come on
• More features related to customizing the experience for the host

Stay tuned for more updates in the near future!                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Google Meet Bomb Guard Google Meet Bomb Guard
ID aalgcdifejfkjjdpdiipndalobjeojlh
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/google-meet-bomb-guard/aalgcdifejfkjjdpdiipndalobjeojlh
คำอธิบาย For Organizations using Google Meet to block unwanted invitation requests from outside organizations/generic gmail accounts
ขนาดไฟล์ 18.24 KB
จำนวนการติดตั้ง 9,000
เวอร์ชันปัจจุบัน 2020.0.1
อัปเดตครั้งล่าสุด 2020-04-13
วันที่เผยแพร่ 2020-04-13
คะแนน 4.50/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา zerovirusexe.productions
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Google Meet Bomb Guard",
    "description": "For Organizations using Google Meet to block unwanted invitation requests from outside organizations\/generic gmail accounts",
    "version": "2020.0.1",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/meet.google.com\/*"
            ],
            "js": [
                "js\/content.js"
            ],
            "css": [
                "css\/invitationDialogHider.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_title": "Google Meet Organization Blocker",
        "default_popup": "html\/popup.html"
    },
    "permissions": [
        "*:\/\/meet.google.com\/*",
        "*:\/\/www.gstatic.com\/meet\/sounds\/*",
        "webRequest",
        "webRequestBlocking"
    ]
}