Github Annotator

Github Annotator

Show user details and repository info in a tooltip.

Merlin
Additional files are visible only to premium users

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"
  }
}