Mute Defaults

This extension lets you set default mute settings for your microphone and camera in google meet.

什麼是Mute Defaults?

Mute Defaults是由tinyj開發的Chrome擴展程式,該擴展的主要功能是“This extension lets you set default mute settings for your microphone and camera in google meet.”。

擴展截圖

screenshot

下載Mute Defaults擴展crx文件

下載Mute Defaults擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Annoyed having to click mute on both your camera and microphone when joining a google meet? You can use this extension to automatically mute your camera or microphone automatically before you click join.                    

擴展基本資訊

名稱 Mute Defaults Mute Defaults
ID flmgkolakahfmbefefpeggkhfolpgdoj
官方網址 https://chromewebstore.google.com/detail/mute-defaults/flmgkolakahfmbefefpeggkhfolpgdoj
簡介 This extension lets you set default mute settings for your microphone and camera in google meet.
檔案大小 31.02 KB
安裝次數 1,702
目前版本 3.0
更新時間 2022-08-04
上架時間 2018-01-19
評分 3.91/5 共 11 次評分
開發者 tinyj
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/jjshoe/MuteDefaults
說明頁面URL https://github.com/jjshoe/MuteDefaults/issues
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Mute Defaults",
    "short_name": "Mute Defaults",
    "description": "This extension lets you set default mute settings for your microphone and camera in google meet.",
    "version": "3.0",
    "homepage_url": "http:\/\/github.com\/jjshoe\/MuteDefaults",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "action": {
        "default_icon": "icon128.png",
        "default_popup": "settings.html",
        "default_title": "Manage microphone and camera settings on google meet"
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "*:\/\/meet.google.com\/*"
            ],
            "js": [
                "hook_hangouts.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ]
}