Twitch adblocker

Eliminate interruptions, enjoy Twitch streams ad-free

Twitch adblocker क्या है?

Twitch adblocker Odd Extensions द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Eliminate interruptions, enjoy Twitch streams ad-free"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Twitch adblocker एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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                    

एक्सटेंशन की मूल जानकारी

नाम Twitch adblocker Twitch adblocker
ID iaokppbbpahmidkimkdfmkmddmcoegjj
आधिकारिक URL https://chromewebstore.google.com/detail/twitch-adblocker/iaokppbbpahmidkimkdfmkmddmcoegjj
विवरण Eliminate interruptions, enjoy Twitch streams ad-free
फ़ाइल का आकार 1.02 MB
स्थापना संख्या 762
वर्तमान संस्करण 1.0.1
अंतिम अपडेट 2023-10-02
प्रकाशन तिथि 2023-10-01
रेटिंग 4.25/5 कुल 32 रेटिंग्स
डेवलपर Odd Extensions
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://www.twitchadblocker.co/
सहायता पृष्ठ URL https://www.twitchadblocker.co/support
समर्थित भाषाएँ 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"
        }
    ]
}