Twitch Adblock
Blocks Ads on Twitch.tv.
What is Twitch Adblock?
Twitch Adblock is a Chrome extension developed by cleanlock, and its main feature is "Blocks Ads on Twitch.tv.".
Extension Screenshots
Download Twitch Adblock Extension CRX File
Download Twitch Adblock 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
This extension blocks ads on Twitch with the help of proxies and embeds. Proxies are optional, but might be necessary to block Ads on your end. This extension does not collect/share any of your personal information and the code is public. It is recommended to use this extension along with uBlock Origin. Sourcecode: https://github.com/cleanlock/VideoAdBlockForTwitch Donate: https://github.com/sponsors/cleanlock
Extension Basic Information
Name | |
ID | ljhnljhabgjcihjoihakgdiicdjncpkd |
Official URL | https://chrome.google.com/webstore/detail/twitch-adblock/ljhnljhabgjcihjoihakgdiicdjncpkd |
Description | Blocks Ads on Twitch.tv. |
File Size | 123 KB |
Installation Count | 648,427 |
Current Version | 5.6.0 |
Last Updated | 2022-10-26 |
Publish Date | 2022-04-02 |
Rating | 4.18/5 Total 547 Ratings |
Developer | cleanlock |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/cleanlock/VideoAdBlockForTwitch |
Help Page URL | https://github.com/cleanlock/VideoAdBlockForTwitch/issues |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Blocks Ads on Twitch.tv.", "manifest_version": 3, "name": "Twitch Adblock", "version": "5.6.0", "icons": { "48": "icons\/twitch-adblock-48x48.png", "96": "icons\/twitch-adblock-96x96.png" }, "action": { "default_icon": "icons\/twitch-adblock-32x32.png", "default_title": "Twitch Adblock", "default_popup": "popup\/index.html" }, "options_ui": { "page": "popup\/index.html" }, "permissions": [ "declarativeNetRequest", "storage" ], "declarative_net_request": { "rule_resources": [ { "id": "ruleset_1", "enabled": true, "path": "block_rules.json" } ] }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/*.twitch.tv\/*" ], "run_at": "document_start", "js": [ "content.js" ] } ], "web_accessible_resources": [ { "resources": [ "remove_video_ads.js" ], "matches": [ "https:\/\/*.twitch.tv\/*" ] } ] } |