Examine source code of AutoRate - Automate Rating YouTube Videos

Inspect and view changes in AutoRate - Automate Rating YouTube Videos 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": "AutoRate - Automate Rating YouTube Videos",
  "description": "AutoRate automates rating the youtube videos you watch. Never bother liking or disliking again.",
  "version": "1.0",
  "permissions": [
    "activeTab",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://www.youtube.com/*",
        "*://youtube.com/*"
      ],
      "js": [
        "content_scripts/utils.js",
        "content_scripts/content.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "background": {
    "scripts": [
      "background_scripts/background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_title": "AutoRate",
    "default_popup": "popup/popup.html"
  },
  "icons": {
    "400": "assets/autorate.png"
  }
}