Examine source code of Return of the YouTube Dislikes

Inspect and view changes in Return of the YouTube Dislikes 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": "Return of the Dislikes",
  "version": "1.5",
  "description": "Brings dislikes back to YouTube!",
  "icons": {
    "48": "icons/border-48.png"
  },
  "permissions": [
    "https://www.youtube.com/watch?*",
    "activeTab",
    "tabs",
    "webRequest",
    "webNavigation"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/watch?*"
      ],
      "js": [
        "return.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  }
}