Video Ad-Block, for Twitch

Swaps video ads for an ad-free stream.

Video Ad-Block, for Twitchคืออะไร?

Video Ad-Block, for Twitch เป็นส่วนขยายของ Chrome ที่พัฒนาโดย sauce และคุณลักษณะหลักของมันคือ "Swaps video ads for an ad-free stream."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Video Ad-Block, for Twitch

ดาวน์โหลดไฟล์ส่วนขยาย Video Ad-Block, for Twitch ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        YOU MUST DISABLE TTV LOL / PURPLE ADBLOCK FOR THIS EXTENSION TO WORK.

This video adblock for Twitch extension will swap Twitch video ads for an ad-free version of the stream at 480p and then automatically switch back to the original video quality once the ad is finished. This is all done locally, no proxies, no VPN's and no third party websites. The extension does not collect nor share any personal information and is opensource, link is below. Works best when used with UBlock Origin, although this extension does also block some ad tracking URL's.

If you would like to support the dev/author, you can via the Paypalme link:

https://paypal.me/ttvadblock

Or you can contribute via crypto:

https://commerce.coinbase.com/checkout/f289396a-e426-4b23-8daf-1ca9887fe2be

You MUST remove any other previous Twitch specific ad blockers or user-scripts in case of conflicts. For example, TTV LoL and Purple Ad-Block will override this extension and stop it from working. However this extension can be used with uBlock Origin (Without user-scripts installed).

If you have issues while using this extension, please note, some ad-blocker extensions may interfere with this extension.

The extension code is opensource and can be looked at here:

https://github.com/saucettv/VideoAdBlockForTwitch


Permissions: We ask for the Twitch URL permission so that we can put the content script into the page and block the ads. We also block ad trackers and ad serving script URL's.



DISCLAIMER OF LIABILITY: The author of this extension specifically DISCLAIMS LIABILITY FOR INCIDENTAL OR CONSEQUENTIAL DAMAGES and assumes no responsibility or liability for any loss or damage suffered by any person, company, corporation, service or subsidiary as a result of the use or misuse of the browser extension. The author assumes or undertakes NO LIABILITY for any loss or damage suffered as a result of the use, misuse or reliance on the browser extension. By using the browser extension you, the user accept full responsibility for any loss, damage or harm that may be caused by your use of the browser extension.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Video Ad-Block, for Twitch Video Ad-Block, for Twitch
ID kgeglempfkhalebjlogemlmeakondflc
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/video-ad-block-for-twitch/kgeglempfkhalebjlogemlmeakondflc
คำอธิบาย Swaps video ads for an ad-free stream.
ขนาดไฟล์ 39.83 KB
จำนวนการติดตั้ง 600,000
เวอร์ชันปัจจุบัน 5.3.4
อัปเดตครั้งล่าสุด 2022-03-29
วันที่เผยแพร่ 2021-04-20
คะแนน 4.51/5 รวมทั้งหมด 532 คะแนน
ผู้พัฒนา sauce
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://paypal.me/ttvadblock
URL หน้าช่วยเหลือ https://paypal.me/ttvadblock
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Swaps video ads for an ad-free stream.",
    "manifest_version": 2,
    "name": "Video Ad-Block, for Twitch",
    "version": "5.3.4",
    "icons": {
        "48": "icons\/ttv-48.png",
        "96": "icons\/ttv-96.png"
    },
    "browser_action": {
        "default_icon": "icons\/ttv-32.png",
        "default_title": "Video Ad-Block, for Twitch",
        "default_popup": "popup\/index.html"
    },
    "options_ui": {
        "page": "popup\/index.html",
        "chrome_style": false
    },
    "permissions": [
        "declarativeNetRequest",
        "storage",
        "webRequest",
        "webRequestBlocking",
        "*:\/\/*.amazon.co.uk\/*"
    ],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "ruleset_1",
                "enabled": true,
                "path": "block_rules.json"
            }
        ]
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.twitch.tv\/*"
            ],
            "run_at": "document_start",
            "js": [
                "content.js"
            ]
        }
    ]
}