TTV ad-block

Block ads on that certain streaming website

TTV ad-blockคืออะไร?

TTV ad-block เป็นส่วนขยายของ Chrome ที่พัฒนาโดย odensc และคุณลักษณะหลักของมันคือ "Block ads on that certain streaming website"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย TTV ad-block

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

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

                        Extension to block ads on Twitch.tv.

Open-source on GitHub! https://github.com/odensc/ttv-ublock

NOTE: This extension is in no way affiliated with Twitch Interactive, Inc. Amazon.com, Inc., or any company mentioned on this page.                    

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

ชื่อ TTV ad-block TTV ad-block
ID kndhknfnihidhcfnaacnndbolonbimai
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/ttv-ad-block/kndhknfnihidhcfnaacnndbolonbimai
คำอธิบาย Block ads on that certain streaming website
ขนาดไฟล์ 4.4 KB
จำนวนการติดตั้ง 68,248
เวอร์ชันปัจจุบัน 2.1.0
อัปเดตครั้งล่าสุด 2020-11-26
วันที่เผยแพร่ 2020-11-15
คะแนน 4.02/5 รวมทั้งหมด 384 คะแนน
ผู้พัฒนา odensc
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "TTV ad-block",
    "version": "2.1.0",
    "description": "Block ads on that certain streaming website",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.twitch.tv\/*",
                "*:\/\/player.twitch.tv\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "permissions": [
        "*:\/\/*.twitch.tv\/*",
        "*:\/\/*.ttvnw.net\/*",
        "webRequest",
        "webRequestBlocking"
    ]
}