TTV ad-block

Block ads on that certain streaming website

TTV ad-block क्या है?

TTV ad-block odensc द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Block ads on that certain streaming website"।

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

screenshot

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

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

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

                        Extension to block ads on Twitch.tv.

Open-source on GitHub! https://github.com/odensc/ttv-ublock

NOTE: This extension is in no way affiliated with Twitch Interactive, Inc. Amazon.com, Inc., or any company mentioned on this page.                    

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

नाम TTV ad-block TTV ad-block
ID kndhknfnihidhcfnaacnndbolonbimai
आधिकारिक URL https://chrome.google.com/webstore/detail/ttv-ad-block/kndhknfnihidhcfnaacnndbolonbimai
विवरण Block ads on that certain streaming website
फ़ाइल का आकार 4.4 KB
स्थापना संख्या 68,248
वर्तमान संस्करण 2.1.0
अंतिम अपडेट 2020-11-26
प्रकाशन तिथि 2020-11-15
रेटिंग 4.02/5 कुल 384 रेटिंग्स
डेवलपर odensc
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "TTV ad-block",
    "version": "2.1.0",
    "description": "Block ads on that certain streaming website",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.twitch.tv\/*",
                "*:\/\/player.twitch.tv\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "permissions": [
        "*:\/\/*.twitch.tv\/*",
        "*:\/\/*.ttvnw.net\/*",
        "webRequest",
        "webRequestBlocking"
    ]
}