Twitch Adblock

Blocks Ads on Twitch.tv.

Cos'è Twitch Adblock?

Twitch Adblock è un'estensione di Chrome sviluppata da cleanlock, e la sua funzione principale è "Blocks Ads on Twitch.tv.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Twitch Adblock

Scarica i file di estensione Twitch Adblock in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        This extension blocks ads on Twitch with the help of proxies and embeds. Proxies are optional, but might be necessary to block Ads on your end. This extension does not collect/share any of your personal information and the code is public.

It is recommended to use this extension along with uBlock Origin.

Sourcecode: https://github.com/cleanlock/VideoAdBlockForTwitch

Donate: https://github.com/sponsors/cleanlock                    

Informazioni di Base sull'Estensione

Nome Twitch Adblock Twitch Adblock
ID ljhnljhabgjcihjoihakgdiicdjncpkd
URL Ufficiale https://chrome.google.com/webstore/detail/twitch-adblock/ljhnljhabgjcihjoihakgdiicdjncpkd
Descrizione Blocks Ads on Twitch.tv.
Dimensione del File 123 KB
Conteggio Installazioni 648,427
Versione Corrente 5.6.0
Ultimo Aggiornamento 2022-10-26
Data di Pubblicazione 2022-04-02
Valutazione 4.18/5 Totale 547 Valutazioni
Sviluppatore cleanlock
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/cleanlock/VideoAdBlockForTwitch
URL della Pagina di Aiuto https://github.com/cleanlock/VideoAdBlockForTwitch/issues
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Blocks Ads on Twitch.tv.",
    "manifest_version": 3,
    "name": "Twitch Adblock",
    "version": "5.6.0",
    "icons": {
        "48": "icons\/twitch-adblock-48x48.png",
        "96": "icons\/twitch-adblock-96x96.png"
    },
    "action": {
        "default_icon": "icons\/twitch-adblock-32x32.png",
        "default_title": "Twitch Adblock",
        "default_popup": "popup\/index.html"
    },
    "options_ui": {
        "page": "popup\/index.html"
    },
    "permissions": [
        "declarativeNetRequest",
        "storage"
    ],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "ruleset_1",
                "enabled": true,
                "path": "block_rules.json"
            }
        ]
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.twitch.tv\/*"
            ],
            "run_at": "document_start",
            "js": [
                "content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "remove_video_ads.js"
            ],
            "matches": [
                "https:\/\/*.twitch.tv\/*"
            ]
        }
    ]
}