GM Assistant
GM Assistant
什麼是GM Assistant?
GM Assistant是由Ayudh Kumar Gupta開發的Chrome擴展程式,該擴展的主要功能是“GM Assistant”。
擴展截圖
下載GM Assistant擴展crx文件
下載GM Assistant擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Use this chrome extension to join all google meet calls via a default user. One can also Turn off their Mic and Camera by default using this extension.
擴展基本資訊
名稱 | GM Assistant |
ID | gnfmffmjjhjhidgghikjiajfbcfhdfmf |
官方網址 | https://chromewebstore.google.com/detail/gm-assistant/gnfmffmjjhjhidgghikjiajfbcfhdfmf |
簡介 | GM Assistant |
檔案大小 | 49.11 KB |
安裝次數 | 51 |
目前版本 | 1.1 |
更新時間 | 2021-06-18 |
上架時間 | 2021-03-29 |
評分 | 5.00/5 共 10 次評分 |
開發者 | Ayudh Kumar Gupta |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "GM Assistant", "version": "1.1", "description": "GM Assistant", "manifest_version": 2, "browser_action": { "default_popup": "popup.html" }, "permissions": [ "activeTab", "storage", "tabs", "http:\/\/*\/", "https:\/\/*\/" ], "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "constants.js", "storageUtil.js", "content.js" ] } ], "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "scripts": [ "background.js" ], "persistent": false } } |