Examine source code of Automate Twitch

Inspect and view changes in Automate Twitch source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "Automate Twitch",
  "version": "2.0.0",
  "icons": {
    "16": "assets/icons/favicon-16.png",
    "32": "assets/icons/favicon-32.png",
    "48": "assets/icons/favicon-48.png",
    "128": "assets/icons/favicon-128.png"
  },
  "description": "A extension to automate the collection of channel points on Twitch.",
  "homepage_url": "https://github.com/florianvazelle/automate-twitch",
  "short_name": "Automate Twitch",
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "author": "florianvazelle",
  "browser_action": {
    "default_icon": {
      "16": "assets/icons/favicon-16.png",
      "32": "assets/icons/favicon-32.png",
      "48": "assets/icons/favicon-48.png",
      "128": "assets/icons/favicon-128.png"
    },
    "default_title": "automate-twitch",
    "browser_style": false
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "background": {
    "scripts": [
      "js/background.bundle.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://www.twitch.tv/*",
        "https://www.twitch.tv/*"
      ],
      "js": [
        "js/contentScript.bundle.js"
      ]
    }
  ]
}