TTV ad-block

Block ads on that certain streaming website

Wat is TTV ad-block?

TTV ad-block is een Chrome-extensie ontwikkeld door odensc, en de belangrijkste functie is "Block ads on that certain streaming website".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie TTV ad-block

Download TTV ad-block-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam TTV ad-block TTV ad-block
ID kndhknfnihidhcfnaacnndbolonbimai
Officiële URL https://chrome.google.com/webstore/detail/ttv-ad-block/kndhknfnihidhcfnaacnndbolonbimai
Beschrijving Block ads on that certain streaming website
Bestandsgrootte 4.4 KB
Aantal Installaties 68,248
Huidige Versie 2.1.0
Laatst Bijgewerkt 2020-11-26
Publicatiedatum 2020-11-15
Beoordeling 4.02/5 Totaal 384 Beoordelingen
Ontwikkelaar odensc
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
    ]
}