Google Meet Auto Mute
Control the mute function of Google Meet automatically with image recognition and voice recognition.
什麼是Google Meet Auto Mute?
Google Meet Auto Mute是由Morpho, Inc.開發的Chrome擴展程式,該擴展的主要功能是“Control the mute function of Google Meet automatically with image recognition and voice recognition.”。
擴展截圖
下載Google Meet Auto Mute擴展crx文件
下載Google Meet Auto Mute擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Usage: 1. Open Google Meet and allow the browser to use camera and microphone. 2. Mute control runs automatically based on the results of image recognition and voice recognition. 3. Auto-mute mode can be enabled/disabled by clicking the Auto Mute icon. For more details, please refer to the link below: https://github.com/morphoinc/auto_mute Article about this software (in Japanese): https://techblog.morphoinc.com/entry/2020/08/03/100007
擴展基本資訊
名稱 | Google Meet Auto Mute |
ID | hbjmnnfhadeedfpchjhofclcdohnbfhe |
官方網址 | https://chromewebstore.google.com/detail/google-meet-auto-mute/hbjmnnfhadeedfpchjhofclcdohnbfhe |
簡介 | Control the mute function of Google Meet automatically with image recognition and voice recognition. |
檔案大小 | 487 KB |
安裝次數 | 460 |
目前版本 | 1.0.1 |
更新時間 | 2020-08-28 |
上架時間 | 2020-07-26 |
評分 | 4.00/5 共 2 次評分 |
開發者 | Morpho, Inc. |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/morphoinc/auto_mute |
隱私政策頁面URL | https://www.morphoinc.com/en/privacy |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Google Meet Auto Mute", "version": "1.0.1", "description": "Control the mute function of Google Meet automatically with image recognition and voice recognition.", "icons": { "128": "images\/icon128.png", "48": "images\/icon48.png", "32": "images\/icon32.png", "16": "images\/icon16.png" }, "content_scripts": [ { "matches": [ "https:\/\/meet.google.com\/*" ], "js": [ "content_script.js" ], "run_at": "document_end" } ], "permissions": [ "https:\/\/meet.google.com\/", "storage", "tabs" ], "web_accessible_resources": [ "models\/tiny_face_detector_model-shard1", "models\/face_landmark_68_tiny_model-shard1", "models\/tiny_face_detector_model-weights_manifest.json", "models\/face_landmark_68_tiny_model-weights_manifest.json", "auto_mute.html" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_title": "auto-mute setting", "default_icon": { "16": "images\/auto_off16.png", "32": "images\/auto_off32.png" } } } |