Twitch Auto Collect

Twitch Auto Collect

Automate your bonus point collection on Twitch.tv with TwitchAutoCollect

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "version": "0.0.8",
  "manifest_version": 3,
  "icons": {
    "16": "icon16x16.png",
    "48": "icon48x48.png",
    "128": "icon128x128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.twitch.tv/*"
      ],
      "js": [
        "arrive-2.4.1.min.js",
        "twitch.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "default_locale": "en",
  "action": {
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "declarativeNetRequest",
    "storage",
    "alarms",
    "background",
    "webNavigation",
    "tabs",
    "scripting"
  ],
  "host_permissions": [
    "*://*/helper.html"
  ],
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "options_page": "options.html",
  "web_accessible_resources": [
    {
      "resources": [
        "helper.html",
        "options.html",
        "options_helper.html",
        "arrive-2.4.1.min.js",
        "twitch.js",
        "popup.js"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ]
}