Twitch Adblock

Blocks Ads on Twitch.tv.

什麼是Twitch Adblock?

Twitch Adblock是由cleanlock開發的Chrome擴展程式,該擴展的主要功能是“Blocks Ads on Twitch.tv.”。

擴展截圖

screenshot

下載Twitch Adblock擴展crx文件

下載Twitch Adblock擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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                    

擴展基本資訊

名稱 Twitch Adblock Twitch Adblock
ID ljhnljhabgjcihjoihakgdiicdjncpkd
官方網址 https://chrome.google.com/webstore/detail/twitch-adblock/ljhnljhabgjcihjoihakgdiicdjncpkd
簡介 Blocks Ads on Twitch.tv.
檔案大小 123 KB
安裝次數 648,427
目前版本 5.6.0
更新時間 2022-10-26
上架時間 2022-04-02
評分 4.18/5 共 547 次評分
開發者 cleanlock
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/cleanlock/VideoAdBlockForTwitch
說明頁面URL https://github.com/cleanlock/VideoAdBlockForTwitch/issues
支援的語言 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\/*"
            ]
        }
    ]
}