Twitch Game Switch Notify

Twitch Game Switch Notify

Bored of your variety streamers current game? This will trigger a chrome notification when they switch game leaving you to view…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Twitch Game Switch Notify",
  "version": "0.1.7",
  "browser_action": {
    "default_icon": {
      "19": "images/twitch19gc.png",
      "38": "images/twitch38gc.png"
    }
  },
  "icons": {
    "16": "images/twitch16gc.png",
    "48": "images/twitch48gc.png",
    "128": "images/twitch128goc.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.twitch.tv/*",
        "https://static-cdn.jtvnw.net/*"
      ],
      "js": [
        "compiled/content-script.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "page": "background.html",
    "persistent": false
  },
  "permissions": [
    "storage",
    "notifications"
  ],
  "manifest_version": 2
}