Twich.tv: Auto-Point Claimer

Twich.tv: Auto-Point Claimer

An easy and automatic way to claim Channel Points for twitch.tv.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Twich.tv: Auto-Point Claimer",
  "description": "An easy and automatic way to claim Channel Points for twitch.tv.",
  "version": "1.0",
  "background": {
    "service_worker": "background.js"
  },
  "icons": {
    "16": "./icons/16.png",
    "48": "./icons/48.png",
    "128": "./icons/128.png"
  },
  "action": {
    "default_icon": {
      "16": "./icons/16.png",
      "48": "./icons/48.png",
      "128": "./icons/128.png"
    },
    "default_popup": "index.html"
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.twitch.tv/*"
      ],
      "js": [
        "index.js"
      ]
    }
  ]
}