Glitch Ad Blocker

Glitch Ad Blocker

Block ads on Twitch

Merlin
Additional files are visible only to premium users

manifest.json


{
  "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"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}