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”。
擴展截圖
下載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.
擴展基本資訊
名稱 | |
ID | kndhknfnihidhcfnaacnndbolonbimai |
官方網址 | 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" ] } |