Make GitHub Pages Full Width

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

Was ist Make GitHub Pages Full Width?

Make GitHub Pages Full Width ist eine Chrome-Erweiterung, die von https://www.danskingdom.com entwickelt wurde, und ihr Hauptmerkmal ist "Makes the GitHub Pull Request, Commit, and Blob pages span the full width of the browser.".

Erweiterungsscreenshots

screenshot

Make GitHub Pages Full Width-Erweiterungs-CRX-Datei herunterladen

Laden Sie Make GitHub Pages Full Width-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Make GitHub Pages Full Width Make GitHub Pages Full Width
ID dfpgjcidmobcpaoolhgchdcmdgenbaoa
Offizielle URL https://chromewebstore.google.com/detail/make-github-pages-full-wi/dfpgjcidmobcpaoolhgchdcmdgenbaoa
Beschreibung Makes the GitHub Pull Request, Commit, and Blob pages span the full width of the browser.
Dateigröße 5.43 KB
Installationsanzahl 123
Aktuelle Version 1.0
Letztes Update 2014-05-27
Veröffentlichungsdatum 2014-05-27
Bewertung 2.75/5 Insgesamt 4 Bewertungen
Entwickler https://www.danskingdom.com
Zahlungsart free
Unterstützte Sprachen 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"
            ]
        }
    ]
}