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”。
擴展截圖
下載Google Meet Bomb Guard擴展crx文件
下載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!
擴展基本資訊
名稱 | ![]() |
ID | aalgcdifejfkjjdpdiipndalobjeojlh |
官方網址 | 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" ] } |