TTV ad-block
Block ads on that certain streaming website
What is TTV ad-block?
TTV ad-block is a Chrome extension developed by odensc, and its main feature is "Block ads on that certain streaming website".
Extension Screenshots
Download TTV ad-block Extension CRX File
Download TTV ad-block extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | |
ID | kndhknfnihidhcfnaacnndbolonbimai |
Official URL | https://chrome.google.com/webstore/detail/ttv-ad-block/kndhknfnihidhcfnaacnndbolonbimai |
Description | Block ads on that certain streaming website |
File Size | 4.4 KB |
Installation Count | 68,248 |
Current Version | 2.1.0 |
Last Updated | 2020-11-26 |
Publish Date | 2020-11-15 |
Rating | 4.02/5 Total 384 Ratings |
Developer | odensc |
[email protected] | |
Payment Type | free |
Supported Languages | 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" ] } |