GitHub Layout

GitHub Layout

Style GitHub and GitHub Enterprise in widescreen layout. Works on github.com and GitHub Enterprise hosted on a github.* address.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "GitHub Layout",
  "short_name": "GitHub Layout",
  "description": "Style GitHub and GitHub Enterprise in widescreen layout. Works on github.com and GitHub Enterprise hosted on a github.* address.",
  "version": "1.0.3",
  "author": "Greg Bradley",
  "icons": {
    "16": "images/icon_16.png",
    "48": "images/icon_48.png",
    "128": "images/icon_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "include_globs": [
        "https://github.*/*",
        "https://vcs.*/*"
      ],
      "css": [
        "main.css"
      ]
    }
  ]
}