TwitchCast Helper

TwitchCast Helper

For everyone that use TwitchCast https://nightdev.com/twitchcast/

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "TwitchCast Helper",
  "version": "0.2.4",
  "description": "For everyone that use TwitchCast https://nightdev.com/twitchcast/",
  "background": {
    "scripts": [
      "init.js"
    ],
    "persistent": false
  },
  "page_action": {
    "default_icon": "icon-128.png",
    "default_title": "TwitchCast Helper"
  },
  "content_scripts": [
    {
      "matches": [
        "https://nightdev.com/twitchcast/*"
      ],
      "js": [
        "setchannel.js"
      ]
    }
  ],
  "permissions": [
    "declarativeContent",
    "tabs",
    "storage"
  ],
  "icons": {
    "240": "icon-128.png"
  }
}