Examine source code of Github Annotator

Inspect and view changes in Github Annotator 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",
  "name": "Github Annotator",
  "description": "Show user details and repository info in a tooltip.",
  "manifest_version": 2,
  "version": "2.1",
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "js": [
        "jquery-1.9.1.min.js",
        "contentscript.js"
      ],
      "css": [
        "style.css"
      ],
      "matches": [
        "https://github.com/"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "options_page": "options.html",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  }
}