Better Twitch Adblock

Blocks Video and Content Ads on Twitch.tv

Better Twitch Adblock란 무엇입니까?

Better Twitch Adblock은(는) DonnyJones에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Blocks Video and Content Ads on Twitch.tv"입니다.

확장 프로그램 스크린샷

screenshot

Better Twitch Adblock 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Better Twitch Adblock

!! PLEASE MAKE SURE TO DISABLE ANY OTHER TWITCH SPECIFIC AD BLOCKERS !!

How does it work?

The extension works by finding a Twitch stream source without ads and replacing the ad with the ad-less version. The ad-less version will be 480p, while the ad runs.

Twitch Ads will be blocked for pre-rolls and mid-rolls and also on VOD's. We also block third party trackers.

No personal information is needed or collected. 

Any donations are very much welcome, as we do pay server costs to make this work.
You can donate via Paypal at https://www.paypal.com/paypalme/ttvadblock




You can find our code on Github and keep up to date with any changes. https://github.com/DonnyJones/AdblockerForTwitch

The code is licensed under the GPL-3.0 license. Credits are on the Github page.                    

확장 프로그램 기본 정보

이름 Better Twitch Adblock Better Twitch Adblock
ID bfeoploanlacfeohdakiecicjnjcooji
공식 URL https://chromewebstore.google.com/detail/better-twitch-adblock/bfeoploanlacfeohdakiecicjnjcooji
설명 Blocks Video and Content Ads on Twitch.tv
파일 크기 67.08 KB
설치 횟수 6,394
현재 버전 3.0.3
최근 업데이트 2023-01-02
출시 날짜 2022-09-01
평점 2.65/5 총 49 개의 평점
개발자 DonnyJones
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Blocks Video and Content Ads on Twitch.tv",
    "manifest_version": 3,
    "name": "Better Twitch Adblock",
    "version": "3.0.3",
    "icons": {
        "48": "icons\/adblock-48x48.png",
        "96": "icons\/adblock-96x96.png"
    },
    "action": {
        "default_icon": "icons\/adblock-32x32.png",
        "default_title": "Better Twitch Adblock",
        "default_popup": "dropdown\/index.html"
    },
    "options_ui": {
        "page": "dropdown\/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_ads.js"
            ],
            "matches": [
                "https:\/\/*.twitch.tv\/*"
            ]
        }
    ]
}