Purple Ads Blocker

Purple Ads Blocker

An adblocker for the Twitch.tv using server side signature and local m3u8 manipulation

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "action": {
    "default_title": "Purple Ads Blocker, for Twitch",
    "default_icon": {
      "128": "images/logov2-128.png"
    },
    "default_popup": "common/html/popup.html"
  },
  "author": "kingarthur",
  "icons": {
    "128": "images/logov2-128.png"
  },
  "name": "Purple Ads Blocker",
  "description": "An adblocker for the Twitch.tv using server side signature and local m3u8 manipulation",
  "manifest_version": 3,
  "permissions": [
    "activeTab",
    "storage"
  ],
  "host_permissions": [
    "https://*.twitch.tv/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.twitch.tv/*"
      ],
      "run_at": "document_start",
      "js": [
        "content-script.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "app/bundle.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "version": "2.6.4"
}