Examine source code of YouTube CleanSlate

Inspect and view changes in YouTube CleanSlate 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": "YouTube CleanSlate",
  "version": "1.5",
  "description": "Removes various UI elements from YouTube for a cleaner experience.",
  "icons": {
    "48": "icon-disabled.png"
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": "icon-disabled.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.youtube.com/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "activeTab",
    "storage",
    "tabs"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{2a5188bf-3f1c-44ce-89cb-e28b4bccc785}"
    }
  }
}