Make GitHub Pages Full Width

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

Wat is Make GitHub Pages Full Width?

Make GitHub Pages Full Width is een Chrome-extensie ontwikkeld door https://www.danskingdom.com, en de belangrijkste functie is "Makes the GitHub Pull Request, Commit, and Blob pages span the full width of the browser.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Make GitHub Pages Full Width

Download Make GitHub Pages Full Width-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Make GitHub Pages Full Width Make GitHub Pages Full Width
ID dfpgjcidmobcpaoolhgchdcmdgenbaoa
Officiële URL https://chromewebstore.google.com/detail/make-github-pages-full-wi/dfpgjcidmobcpaoolhgchdcmdgenbaoa
Beschrijving Makes the GitHub Pull Request, Commit, and Blob pages span the full width of the browser.
Bestandsgrootte 5.43 KB
Aantal Installaties 123
Huidige Versie 1.0
Laatst Bijgewerkt 2014-05-27
Publicatiedatum 2014-05-27
Beoordeling 2.75/5 Totaal 4 Beoordelingen
Ontwikkelaar https://www.danskingdom.com
Betalingswijze free
Ondersteunde Talen 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"
            ]
        }
    ]
}