GitHub Responsive Width Layout

GitHub Responsive Width Layout

Overwrites GitHub.com css rules related to width so that it can fit a narrow browser screen

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 Responsive Width Layout",
  "description": "Overwrites GitHub.com css rules related to width so that it can fit a narrow browser screen",
  "version": "1.0.1",
  "permissions": [
    "tabs"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "browser_action": {
    "default_icon": {
      "16": "icon16.png",
      "32": "icon32.png"
    },
    "default_title": "GitHub Responsive Width Layout"
  },
  "content_scripts": [
    {
      "matches": [
        "https://github.com/*",
        "https://gist.github.com/*"
      ],
      "css": [
        "github-responsive-width-layout.css"
      ],
      "js": [
        "github-responsive-width-layout.js"
      ]
    }
  ]
}