Twitch Auto Bonuschest

Twitch Auto Bonuschest

An extension that automatically clicks on bonus chests.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "version": "2.4",
  "default_locale": "en",
  "name": "Twitch Auto Bonuschest",
  "description": "An extension that automatically clicks on bonus chests.",
  "icons": {
    "16": "img/icon.png",
    "48": "img/icon.png",
    "128": "img/icon.png"
  },
  "permissions": [
    "tabs",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.twitch.tv/*"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "browser_action": {
    "default_popup": "popup/popup.html",
    "default_title": "Click on the bonus chest automatically!"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  }
}