TTV ad-block

Block ads on that certain streaming website

什么是TTV ad-block?

TTV ad-block是由odensc开发的Chrome扩展程序,该扩展的主要功能是“Block ads on that certain streaming website”。

扩展截图

screenshot

下载TTV ad-block扩展crx文件

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