Twitch Category Change Notifier

Twitch Category Change Notifier

Know when your favorite streamers are changing categories

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Twitch Category Change Notifier",
  "description": "Know when your favorite streamers are changing categories",
  "version": "1.0.3",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "permissions": [
    "storage",
    "alarms",
    "scripting",
    "activeTab",
    "background",
    "tabs"
  ],
  "action": {
    "default_popup": "popup.html"
  },
  "icons": {
    "256": "images/icon.png"
  },
  "externally_connectable": {
    "matches": [
      "https://strikr.alwaysdata.net/*"
    ]
  },
  "web_accessible_resources": [
    {
      "resources": [
        "test.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}