Glitch Ad Blocker
Block ads on Twitch
What is Glitch Ad Blocker?
Glitch Ad Blocker is a Chrome extension developed by Tom Anderson, and its main feature is "Block ads on Twitch".
Extension Screenshots
Download Glitch Ad Blocker Extension CRX File
Download Glitch Ad Blocker 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 enable ad blocking on Twitch.tv
Extension Basic Information
Name | Glitch Ad Blocker |
ID | lipdfgjnoaojanblcgnjfiiognpihldc |
Official URL | https://chromewebstore.google.com/detail/glitch-ad-blocker/lipdfgjnoaojanblcgnjfiiognpihldc |
Description | Block ads on Twitch |
File Size | 4.39 KB |
Installation Count | 175 |
Current Version | 0.1.0 |
Last Updated | 2020-12-09 |
Publish Date | 2020-12-09 |
Rating | 2.33/5 Total 3 Ratings |
Developer | Tom Anderson |
[email protected] | |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Glitch Ad Blocker", "version": "0.1.0", "description": "Block ads on Twitch", "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" ] } |