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은(는) zerovirusexe.productions에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "For Organizations using Google Meet to block unwanted invitation requests from outside organizations/generic gmail accounts"입니다.

확장 프로그램 스크린샷

screenshot

Google Meet Bomb Guard 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    ]
}