Examine source code of UnTube

Inspect and view changes in UnTube 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
{
  "applications": {
    "gecko": {
      "id": "untube@cattaneo.uy"
    }
  },
  "manifest_version": 2,
  "name": "UnTube",
  "version": "1.1.0",
  "description": "Hides YouTube's ads and addictive suggestions.",
  "icons": {
    "16": "icons/untube-16.png",
    "24": "icons/untube-24.png",
    "32": "icons/untube-32.png"
  },
  "permissions": [
    "storage"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*",
        "*://youtu.be/*"
      ],
      "js": [
        "untube.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "browser_action": {
    "default_icon": {
      "16": "icons/untube-16.png",
      "24": "icons/untube-24.png",
      "32": "icons/untube-32.png"
    }
  }
}