Twitch Muter

Only plays audio of active twitch tab

Apa itu Twitch Muter?

Twitch Muter adalah ekstensi Chrome yang dikembangkan oleh Meeoh, dan fitur utamanya adalah "Only plays audio of active twitch tab".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Twitch Muter

Unduh file ekstensi Twitch Muter dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Twitch Muter Twitch Muter
ID gcikmdppgicmifbcngddbhcfmnecnejf
URL Resmi https://chromewebstore.google.com/detail/twitch-muter/gcikmdppgicmifbcngddbhcfmnecnejf
Deskripsi Only plays audio of active twitch tab
Ukuran File 82.98 KB
Jumlah Instalasi 64
Versi Saat Ini 1.3
Terakhir Diperbarui 2016-10-19
Tanggal Publikasi 2016-10-19
Penilaian 5.00/5 Total 4 Penilaian
Pengembang Meeoh
Email [email protected]
Tipe Pembayaran free
URL Halaman Bantuan https://github.com/meeoh/TwitchMuter
Bahasa yang Didukung 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
}