Full Width Github

Full Width Github

Always use full-width layout on Github. Great for reading and presenting code. This extension is not affiliated with Github.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Full Width Github",
  "version": "0.0.1",
  "description": "Always use full-width layout on Github. Great for reading and presenting code. This extension is not affiliated with Github.",
  "browser_action": {
    "default_icon": "github48.png",
    "default_title": "Wider Github"
  },
  "icons": {
    "16": "github16.png",
    "48": "github48.png",
    "128": "github128.png"
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "https://github.com/*",
        "https://*.github.com/*"
      ]
    }
  ]
}