Twitch adblocker

Eliminate interruptions, enjoy Twitch streams ad-free

What is Twitch adblocker?

Twitch adblocker is a Chrome extension developed by Odd Extensions, and its main feature is "Eliminate interruptions, enjoy Twitch streams ad-free".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download Twitch adblocker Extension CRX File

Download Twitch adblocker 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

                        Twitch adblocker is a versatile Chrome extension that elevates your browsing experience by seamlessly blocking intrusive ads, including annoying pop-ups and disruptive Twitch ads. Whether you're exploring the web or indulging in your favorite Twitch streams, our extension ensures an ad-free environment. With its lightweight design, it won't compromise your browser's performance. We also encourage supporting content creators through alternative means, so you can enjoy ad-free content while still helping the creators you love. Install Twitch adblocker today and say goodbye to pesky ads and interruptions                    

Extension Basic Information

Name Twitch adblocker Twitch adblocker
ID iaokppbbpahmidkimkdfmkmddmcoegjj
Official URL https://chromewebstore.google.com/detail/twitch-adblocker/iaokppbbpahmidkimkdfmkmddmcoegjj
Description Eliminate interruptions, enjoy Twitch streams ad-free
File Size 1.02 MB
Installation Count 762
Current Version 1.0.1
Last Updated 2023-10-02
Publish Date 2023-10-01
Rating 4.25/5 Total 32 Ratings
Developer Odd Extensions
Email [email protected]
Payment Type free
Extension Website https://www.twitchadblocker.co/
Help Page URL https://www.twitchadblocker.co/support
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Twitch adblocker",
    "description": "Eliminate interruptions, enjoy Twitch streams ad-free",
    "version": "1.0.1",
    "manifest_version": 3,
    "icons": {
        "16": "twitch16x16.png",
        "48": "twitch48x48.png",
        "128": "twitch128x128.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_title": "Twitch adblocker",
        "default_icon": "twitch16x16.png"
    },
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "ruleset_1",
                "enabled": true,
                "path": "rules.json"
            }
        ]
    },
    "permissions": [
        "declarativeNetRequest",
        "storage"
    ],
    "options_page": "options.html",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.twitch.tv\/*"
            ],
            "js": [
                "adRemove.js",
                "removeTwitchAds.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "adRemove.js",
                "removeTwitchAds.js"
            ],
            "matches": [
                "https:\/\/www.twitch.tv\/*"
            ],
            "run_at": "document_start"
        }
    ]
}