Make GitHub Pages Full Width

Makes the GitHub Pull Request, Commit, and Blob pages span the full width of the browser.

What is Make GitHub Pages Full Width?

Make GitHub Pages Full Width is a Chrome extension developed by https://www.danskingdom.com, and its main feature is "Makes the GitHub Pull Request, Commit, and Blob pages span the full width of the browser.".

Extension Screenshots

screenshot

Download Make GitHub Pages Full Width Extension CRX File

Download Make GitHub Pages Full Width extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Makes the GitHub Pull Request, Commit, and Blob pages span the full width of your browser, rather than maxing out at the default ~900 pixels. This makes viewing code on GitHub much easier, as most developers have widescreen monitors. If the page fails to expand, simply refresh the page.                    

Extension Basic Information

Name Make GitHub Pages Full Width Make GitHub Pages Full Width
ID dfpgjcidmobcpaoolhgchdcmdgenbaoa
Official URL https://chromewebstore.google.com/detail/make-github-pages-full-wi/dfpgjcidmobcpaoolhgchdcmdgenbaoa
Description Makes the GitHub Pull Request, Commit, and Blob pages span the full width of the browser.
File Size 5.43 KB
Installation Count 123
Current Version 1.0
Last Updated 2014-05-27
Publish Date 2014-05-27
Rating 2.75/5 Total 4 Ratings
Developer https://www.danskingdom.com
Payment Type free
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Make GitHub Pages Full Width",
    "description": "Makes the GitHub Pull Request, Commit, and Blob pages span the full width of the browser.",
    "version": "1.0",
    "icons": {
        "128": "icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*\/pull\/*\/files*",
                "https:\/\/github.com\/*\/commit\/*",
                "https:\/\/github.com\/*\/blob\/*"
            ],
            "js": [
                "MakeGitHubPullRequestCommitAndBlobPagesFullWidth.user.js"
            ]
        }
    ]
}