Google Meet Mute Toggler

For muting and unmuting Google Meet from the extension icon.

什么是Google Meet Mute Toggler?

Google Meet Mute Toggler是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“For muting and unmuting Google Meet from the extension icon.”。

扩展截图

screenshot

下载Google Meet Mute Toggler扩展crx文件

下载Google Meet Mute Toggler扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        For muting and unmuting Google Meet from the extension icon in the Chrome browser, no matter what tab you're currently looking at.

Features
* Toggle mute in your active Google Meet no matter what tab you're looking at
* Extension icon is green when you're in an active Google Meet and unmuted, red when muted, and otherwise gray
* You'll get an error message if you have more than one Meet open
* You can toggle the mute button on a Meet join page but it won't do much
* If you have a Meet open and toggle muting from within the application or using your keyboard, the extension icon will register this and change color appropriately (checks ever 3 seconds)

See code at https://github.com/jasonketola/Google-Meet-Mute-Toggler.                    

扩展基本信息

名称 Google Meet Mute Toggler Google Meet Mute Toggler
ID fkdppolbkpdoebdhflolnnkeiaoblfjc
官方URL https://chromewebstore.google.com/detail/google-meet-mute-toggler/fkdppolbkpdoebdhflolnnkeiaoblfjc
简介 For muting and unmuting Google Meet from the extension icon.
文件大小 11.12 KB
安装次数 8,694
当前版本 0.3
更新时间 2021-10-31
上架时间 2020-04-19
评分 3.33/5 共3次评分
开发者 Unknown
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/jasonketola/Google-Meet-Mute-Toggler
帮助页面URL https://github.com/jasonketola/Google-Meet-Mute-Toggler
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Google Meet Mute Toggler",
    "description": "For muting and unmuting Google Meet from the extension icon.",
    "version": "0.3",
    "author": "Jason Ketola",
    "icons": {
        "16": "M_gray16.png",
        "48": "M_gray48.png",
        "128": "M_gray128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "Toggle",
        "default_icon": "M_gray128.png"
    },
    "permissions": [
        "tabs",
        "https:\/\/meet.google.com\/",
        "alarms"
    ]
}