GitHub Status

GitHub Status

Display the build status next to the project name on github.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "version": "0.0.2",
  "manifest_version": 2,
  "name": "GitHub Status",
  "description": "Display the build status next to the project name on github.",
  "icons": {
    "16": "icon-16.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "content_scripts": [
    {
      "js": [
        "script.js"
      ],
      "matches": [
        "https://github.com/*"
      ],
      "run_at": "document_idle"
    }
  ]
}