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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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