Examine source code of YoutubeLikes

Inspect and view changes in YoutubeLikes 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": "YoutubeLikes",
  "version": "1.0",
  "description": "Displays like count under youtube thumbnails",
  "icons": {
    "48": "icons/like48.png",
    "96": "icons/like96.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "js": [
        "main.js"
      ]
    }
  ],
  "permissions": [
    "*://*.googleapis.com/*"
  ]
}