Twitch Audio Suppressor

Automatically mutes all active Twitch tabs except the one in focus.

Twitch Audio Suppressor là gì?

Twitch Audio Suppressor là một tiện ích mở rộng Chrome được phát triển bởi Swampfox, và tính năng chính của nó là "Automatically mutes all active Twitch tabs except the one in focus.".

Ả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 Twitch Audio Suppressor

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

                        Simple extension that listens for tabs playing audio from Twitch and only allows the active tab within the active window to play, muting all others.  I use it all the time when switching between multiple streams.                    

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

Tên Twitch Audio Suppressor Twitch Audio Suppressor
ID bkjppbhjfbafpamcciabdjkemkbkhcjb
URL Chính Thức https://chromewebstore.google.com/detail/twitch-audio-suppressor/bkjppbhjfbafpamcciabdjkemkbkhcjb
Mô tả Automatically mutes all active Twitch tabs except the one in focus.
Kích Thước Tệp 35.77 KB
Số Lần Cài Đặt 75
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2020-09-15
Ngày Phát Hành 2020-04-22
Nhà Phát Triển Swampfox
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",
    "manifest_version": 2,
    "name": "Twitch Audio Suppressor",
    "description": "Automatically mutes all active Twitch tabs except the one in focus.",
    "version": "1.1",
    "icons": {
        "128": "icon3_128.png",
        "48": "icon3_48.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.twitch.tv\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "content.js",
                "avatarFetcher.js",
                "menu.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "*:\/\/twitch.tv\/*",
        "activeTab",
        "*:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    }
}