AdBlock For Twitch: No More Ads

AdBlock For Twitch: No More Ads

Yes, AdBlock For Twitch really works, you don't see any ads on Twitch While Playing Video. install and use AdBlock For Twitch.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "1.0.0",
  "name": "AdBlock For Twitch: No More Ads",
  "description": "Yes, AdBlock For Twitch really works, you don't see any ads on Twitch While Playing Video. install and use AdBlock For Twitch.",
  "icons": {
    "48": "icons/twitch-blocked-48x48.png",
    "96": "icons/twitch-blocked-96x96.png"
  },
  "action": {
    "default_icon": "icons/twitch-blocked-32x32.png",
    "default_title": "AdBlock For Twitch: No More Ads",
    "default_popup": "pages/pop-up.html"
  },
  "options_ui": {
    "page": "pages/pop-up.html"
  },
  "permissions": [
    "declarativeNetRequest",
    "storage"
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "ruleset_1",
        "enabled": true,
        "path": "rule_set_1.json"
      }
    ]
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.twitch.tv/*"
      ],
      "run_at": "document_start",
      "js": [
        "content-script.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "block_ads.js"
      ],
      "matches": [
        "https://*.twitch.tv/*"
      ]
    }
  ]
}