Twitch Muter

Only plays audio of active twitch tab

Twitch Muter là gì?

Twitch Muter là một tiện ích mở rộng Chrome được phát triển bởi Meeoh, và tính năng chính của nó là "Only plays audio of active twitch tab".

Ả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 Twitch Muter

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

                        Mutes inactive twitch tabs! If you ever have multiple twitch streams open at once in different tabs, but only want the active tab to have audio playing, just activate the extension via the icon in the top right, and voila!

***IMPORTANT***
With all your twitch tabs open, activate the extension and they'll all become muted, now whenever you switch tabs to a twitch stream, its audio will be activated.

Report issues here: https://github.com/meeoh/TwitchMuter/issues
View changelog here: https://github.com/meeoh/TwitchMuter/wiki/Chrome-Extension-Change-Log                    

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

Tên Twitch Muter Twitch Muter
ID gcikmdppgicmifbcngddbhcfmnecnejf
URL Chính Thức https://chromewebstore.google.com/detail/twitch-muter/gcikmdppgicmifbcngddbhcfmnecnejf
Mô tả Only plays audio of active twitch tab
Kích Thước Tệp 82.98 KB
Số Lần Cài Đặt 64
Phiên Bản Hiện Tại 1.3
Cập Nhật Lần Cuối 2016-10-19
Ngày Phát Hành 2016-10-19
Đánh Giá 5.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển Meeoh
Email [email protected]
Loại Thanh Toán free
URL Trang Trợ Giúp https://github.com/meeoh/TwitchMuter
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Twitch Muter",
    "description": "Only plays audio of active twitch tab",
    "version": "1.3",
    "permissions": [
        "activeTab",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "background": {
        "scripts": [
            "jquery-3.1.1.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.twitch.tv\/*"
            ],
            "js": [
                "jquery-3.1.1.js",
                "content_script.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Toggle",
        "default_icon": "volumeOff.png"
    },
    "manifest_version": 2
}