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
公式URL 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
Eメール [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\/*"
            ]
        }
    ]
}