Twitch Auto Channel Points Collector

Twitch Auto Channel Points Collector

Automatically collect channel points while you are watching someone on twitch.tv!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Twitch Auto Channel Points Collector",
  "description": "Automatically collect channel points while you are watching someone on twitch.tv!",
  "version": "0.0.0.2",
  "manifest_version": 3,
  "permissions": [
    "storage"
  ],
  "action": {
    "default_popup": "popup.html",
    "css": [
      "style.css"
    ],
    "default_icon": {
      "16": "/images/channel16.png",
      "32": "/images/channel32.png",
      "48": "/images/channel48.png",
      "128": "/images/channel128.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.twitch.tv/*"
      ],
      "js": [
        "thirdParty/jquery-3.6.0.min.js",
        "content-script.js"
      ]
    }
  ],
  "icons": {
    "16": "/images/channel16.png",
    "32": "/images/channel32.png",
    "48": "/images/channel48.png",
    "128": "/images/channel128.png"
  }
}