Twitch Loot Collector

Twitch Loot Collector

This small extension automates clicking the little loot box in the Twitch chat. If you are not actively in the chat during a stream…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Twitch Loot Collector",
  "version": "1.0",
  "content_scripts": [
    {
      "matches": [
        "https://twitch.tv/*",
        "http://twitch.tv/*",
        "https://www.twitch.tv/*",
        "http://www.twitch.tv/*"
      ],
      "js": [
        "LootCollector.js"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "/images/twitch_loot_16x16.png",
      "32": "/images/twitch_loot_32x32.png",
      "48": "/images/twitch_loot_48x48.png",
      "128": "/images/twitch_loot_128x128.png"
    }
  },
  "icons": {
    "16": "/images/twitch_loot_16x16.png",
    "32": "/images/twitch_loot_32x32.png",
    "48": "/images/twitch_loot_48x48.png",
    "128": "/images/twitch_loot_128x128.png"
  }
}