Github Pages Extension

Github Pages Extension

Adds missing links to the repository page when there is a gh-pages branch in the repo but no homepage is set.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "name": "Github Pages Extension",
  "version": "1.0.1",
  "manifest_version": 2,
  "description": "Adds missing links to the repository page when there is a gh-pages branch in the repo but no homepage is set.",
  "content_scripts": [
    {
      "js": [
        "jquery.js",
        "content.js"
      ],
      "matches": [
        "http://github.com/*",
        "https://github.com/*"
      ]
    }
  ],
  "icons": {
    "48": "icon48.png",
    "128": "icon.png"
  }
}