AD Block for Twitch - Twitch ADBlock

Instantly eliminate unwanted adverts, intrusive notifications within a matter of a few clicks using AdBlock For Twitch.

AD Block for Twitch - Twitch ADBlock là gì?

AD Block for Twitch - Twitch ADBlock là một tiện ích mở rộng Chrome được phát triển bởi netflix party, và tính năng chính của nó là "Instantly eliminate unwanted adverts, intrusive notifications within a matter of a few clicks using AdBlock For Twitch.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng AD Block for Twitch - Twitch ADBlock

Tải xuống các tệp mở rộng AD Block for Twitch - Twitch ADBlock dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Twitch ADBlock 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. InstallTwitch ADBlock today and say goodbye to pesky ads and interruptions                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên AD Block for Twitch - Twitch ADBlock AD Block for Twitch - Twitch ADBlock
ID agplmejmlhekblnbnnbecamfplbgmkji
URL Chính Thức https://chromewebstore.google.com/detail/ad-block-for-twitch-twitc/agplmejmlhekblnbnnbecamfplbgmkji
Mô tả Instantly eliminate unwanted adverts, intrusive notifications within a matter of a few clicks using AdBlock For Twitch.
Kích Thước Tệp 1.11 MB
Số Lần Cài Đặt 47
Phiên Bản Hiện Tại 1.1.0
Cập Nhật Lần Cuối 2023-12-26
Ngày Phát Hành 2023-12-26
Đánh Giá 1.50/5 Tổng số 2 Đánh Giá
Nhà Phát Triển netflix party
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "AD Block for Twitch - Twitch ADBlock",
    "description": "Instantly eliminate unwanted adverts, intrusive notifications within a matter of a few clicks using AdBlock For Twitch.",
    "version": "1.1.0",
    "manifest_version": 3,
    "icons": {
        "16": "twitch16x16.png",
        "48": "twitch48x48.png",
        "128": "twitch128x128.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_title": "AD Block for Twitch - Twitch ADBlock",
        "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"
        }
    ]
}