Twitch Point Reward Redemption URL Caller

Twitch Point Reward Redemption URL Caller

Script to watch the twitch channel point reward redemption window and redeem specific channel points and mark as completed

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Twitch Point Reward Redemption URL Caller",
  "version": "1.0",
  "description": "Script to watch the twitch channel point reward redemption window and redeem specific channel points and mark as completed",
  "icons": {
    "32": "icon32.png",
    "64": "icon64.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://dashboard.twitch.tv/u/*"
      ],
      "js": [
        "content_script.js",
        "jquery-3.6.0.min.js"
      ]
    }
  ],
  "browser_action": {
    "default_title": "Channel Point Options",
    "default_popup": "options.html"
  },
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "permissions": [
    "activeTab",
    "https://dashboard.twitch.tv/u/*/stream-manager",
    "storage"
  ]
}