Twitch Adblock

Blocks Ads on Twitch.tv.

Twitch Adblock란 무엇입니까?

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

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        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
이메일 [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\/*"
            ]
        }
    ]
}