Google Meet Mute Toggler

Easily toggle your microphone mutes on Google Meet meetings, by clicking toolbar button.

Google Meet Mute Toggler là gì?

Google Meet Mute Toggler là một tiện ích mở rộng Chrome được phát triển bởi motemen, và tính năng chính của nó là "Easily toggle your microphone mutes on Google Meet meetings, by clicking toolbar button.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

Tải xuống tệp CRX của tiện ích mở rộng Google Meet Mute Toggler

Tải xuống các tệp mở rộng Google Meet Mute Toggler dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Easily toggle your microphone mutes on Google Meet meetings, by clicking toolbar button.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Google Meet Mute Toggler Google Meet Mute Toggler
ID ojdhpiapiiphnknbbgddcfnlagfgpjnp
URL Chính Thức https://chromewebstore.google.com/detail/google-meet-mute-toggler/ojdhpiapiiphnknbbgddcfnlagfgpjnp
Mô tả Easily toggle your microphone mutes on Google Meet meetings, by clicking toolbar button.
Kích Thước Tệp 16 KB
Số Lần Cài Đặt 44
Phiên Bản Hiện Tại 1.2.0
Cập Nhật Lần Cuối 2021-08-04
Ngày Phát Hành 2020-11-11
Nhà Phát Triển motemen
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/motemen/chrome-meet-mute-toggler
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Google Meet Mute Toggler",
    "version": "1.2.0",
    "browser_action": {
        "default_icon": {
            "32": "assets\/icons\/mic_on.png"
        }
    },
    "permissions": [
        "https:\/\/meet.google.com\/*",
        "tabs"
    ],
    "background": {
        "persistent": true,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/meet.google.com\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "commands": {
        "focus": {
            "description": "Focus tab",
            "global": true
        },
        "toggle-mute": {
            "description": "Toggle mute",
            "global": true
        }
    }
}