Twitch Ad Blocker

Twitch Ad Blocker

Tired of Ads on Twitch? Block all ads and watch videos without interruptions

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Twitch Ad Blocker",
  "version": "0.0.1",
  "description": "Tired of Ads on Twitch? Block all ads and watch videos without interruptions",
  "icons": {
    "16": "img/16.png",
    "32": "img/32.png",
    "48": "img/48.png",
    "128": "img/128.png"
  },
  "permissions": [],
  "background": {
    "scripts": [
      "backgroundScript.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "run_at": "document_start",
      "js": [
        "content.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "img/128.png"
  },
  "manifest_version": 2
}