Examine source code of Classic YouTube Design [DISCONTINUED]

Inspect and view changes in Classic YouTube Design [DISCONTINUED] 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": "Classic YouTube Design",
  "version": "0.2.0.3",
  "version_name": "0.2.0",
  "default_locale": "en",
  "description": "__MSG_ext_desc__",
  "homepage_url": "https://github.com/Cicero-Interactive/Classic-YouTube-Design",
  "author": "Cicero Interactive",
  "icons": {
    "48": "assets/ico/48.png"
  },
  "browser_action": {
    "default_icon": {
      "48": "assets/ico/48.png"
    },
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "js": [
        "injector.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "web_accessible_resources": [
    "injections/*"
  ],
  "options_ui": {
    "page": "popup.html"
  },
  "permissions": [
    "https://www.youtube.com/",
    "tabs",
    "storage"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{08d012da-e630-4c25-b65a-dba2241367c9}",
      "strict_min_version": "48.0"
    }
  }
}