Examine source code of YouTube Text-Recognition

Inspect and view changes in YouTube Text-Recognition 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
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "YouTube Text-Recognition",
  "version": "0.1",
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/watch*"
      ],
      "css": [
        "content/content.css",
        "lib/cropper.css"
      ],
      "js": [
        "lib/jquery.min.js",
        "lib/cropper.min.js",
        "lib/color-thief.min.js",
        "lib/tesseract.min.js",
        "content/content.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "res/youtube(amin).png",
    "default_popup": "popup/popup.html"
  },
  "web_accessible_resources": [
    "lib/worker.min.js",
    "lib/tesseract-core.wasm.js",
    "lang-data/*.traineddata.gz"
  ],
  "permissions": [
    "activeTab"
  ]
}