Twitch Channel Points Auto Claimer -Twiclips

Twitch Channel Points Auto Claimer -Twiclips

This extension helps you automatically claim Twitch channel points while also auto claim drops.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_extName__",
  "homepage_url": "https://chrome.google.com/webstore/detail/ocoimkjodcjigpcgfbnddnhfafonmado",
  "description": "__MSG_extDes__",
  "default_locale": "en",
  "content_scripts": [
    {
      "matches": [
        "https://*.twitch.tv/*"
      ],
      "js": [
        "js/content-script.js"
      ]
    }
  ],
  "icons": {
    "128": "icons/logo.png"
  },
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "ruleset_1",
        "enabled": true,
        "path": "rule.json"
      }
    ]
  },
  "version": "1.0.1",
  "permissions": [
    "storage",
    "declarativeNetRequest",
    "alarms"
  ],
  "background": {
    "service_worker": "js/background.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_title": "__MSG_extName__",
    "default_icon": {
      "128": "icons/logo.png"
    }
  }
}