Gather Mute Shortcut

Press SPACE to talk and custom shortcut to toggle mute

Gather Mute Shortcut là gì?

Gather Mute Shortcut là một tiện ích mở rộng Chrome được phát triển bởi https://shinychang.net, và tính năng chính của nó là "Press SPACE to talk and custom shortcut to toggle mute".

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

screenshot

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

Tải xuống các tệp mở rộng Gather Mute Shortcut 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

                        Press SPACE to un-mute
Please visit chrome://extensions/shortcuts to setup the shortcut of toggle mic                    

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

Tên Gather Mute Shortcut Gather Mute Shortcut
ID ohhjbipfhipcebhjkcbodeilfgekihpj
URL Chính Thức https://chromewebstore.google.com/detail/gather-mute-shortcut/ohhjbipfhipcebhjkcbodeilfgekihpj
Mô tả Press SPACE to talk and custom shortcut to toggle mute
Kích Thước Tệp 5.41 KB
Số Lần Cài Đặt 97
Phiên Bản Hiện Tại 1.0.4
Cập Nhật Lần Cuối 2022-02-17
Ngày Phát Hành 2021-08-30
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển https://shinychang.net
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Gather Mute Shortcut",
    "description": "Press SPACE to talk and custom shortcut to toggle mute",
    "version": "1.0.4",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/app.gather.town\/*"
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "commands": {
        "toggleMute": {
            "suggested_key": {
                "default": "Ctrl+D",
                "mac": "Command+D"
            },
            "description": "Toggle Mic on\/off"
        }
    }
}