Examine source code of AutoTube

Inspect and view changes in AutoTube 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
{
  "description": "Adds a switch to toggle auto replay of the current YouTube video",
  "manifest_version": 2,
  "name": "AutoTube",
  "version": "1.0",
  "homepage_url": "https://github.com/Sarayalth/AutoTube",
  "icons": {
    "1280": "icons/icon1280.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://www.youtube.com/*",
        "https://www.youtube.com/*"
      ],
      "js": [
        "ytauto.js"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}