Twitch MuteAds

Mute Ads on Twitch

What is Twitch MuteAds?

Twitch MuteAds is a Chrome extension developed by spddl, and its main feature is "Mute Ads on Twitch".

Extension Screenshots

screenshot

Download Twitch MuteAds Extension CRX File

Download Twitch MuteAds extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Mutes advertisements on Twitch and reactivates them after the advertisement.                    

Extension Basic Information

Name Twitch MuteAds Twitch MuteAds
ID jpcjejphfbpbnjahcnfgcjjodoopgdgb
Official URL https://chromewebstore.google.com/detail/twitch-muteads/jpcjejphfbpbnjahcnfgcjjodoopgdgb
Description Mute Ads on Twitch
File Size 10.13 KB
Installation Count 44
Current Version 0.0.3
Last Updated 2021-01-26
Publish Date 2020-12-12
Rating 4.00/5 Total 2 Ratings
Developer spddl
Email [email protected]
Payment Type free
Extension Website https://github.com/spddl/Twitch-MuteAds
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Twitch MuteAds",
    "description": "Mute Ads on Twitch",
    "version": "0.0.3",
    "icons": {
        "48": "volume_off_googred500_48x48.png",
        "128": "volume_off_googred500_108x108.png",
        "256": "volume_off_googred500_144x144.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.twitch.tv\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "tabs"
    ],
    "host_permissions": [
        "*:\/\/*.twitch.tv\/*"
    ],
    "action": {
        "default_title": "Twitch MuteAds",
        "default_icon": {
            "48": "volume_off_googred500_48x48.png",
            "128": "volume_off_googred500_108x108.png",
            "256": "volume_off_googred500_144x144.png"
        }
    }
}