Twpoints

Twpoints

A helper to get Twitch points

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Twpoints",
  "description": "A helper to get Twitch points",
  "version": "1.0",
  "page_action": {
    "default_icon": "logo.png",
    "default_popup": "index.html"
  },
  "background": {
    "scripts": [
      "background-es5.js",
      "runtime-es5.js",
      "vendor-es5.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.twitch.tv/*"
      ],
      "js": [
        "content-es5.js",
        "runtime-es5.js",
        "vendor-es5.js"
      ]
    }
  ],
  "permissions": [
    "declarativeContent",
    "storage",
    "tabs",
    "activeTab"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}