Twitch adblocker

Eliminate interruptions, enjoy Twitch streams ad-free

什么是Twitch adblocker?

Twitch adblocker是由Odd Extensions开发的Chrome扩展程序,该扩展的主要功能是“Eliminate interruptions, enjoy Twitch streams ad-free”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载Twitch adblocker扩展crx文件

下载Twitch adblocker扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
        }
    ]
}