Examine source code of Disable YouTube Auto Play

Inspect and view changes in Disable YouTube Auto Play 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": "Disable YouTube AutoPlay",
  "version": "1.8",
  "description": "This Addon toggles Youtube autoplay to off.",
  "icons": {
    "96": "icons/icon-enabled.png"
  },
  "browser_action": {
    "default_icon": "icons/icon-enabled.png",
    "default_title": "Disable YouTube AutoPlay"
  },
  "background": {
    "scripts": [
      "script.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "js": [
        "contentScript.js"
      ],
      "run_at": "document_start"
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{2d01703a-aafa-4464-9a6a-87e4b9dbf490}"
    }
  }
}