Make GitHub Pages Full Width

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

Cos'è Make GitHub Pages Full Width?

Make GitHub Pages Full Width è un'estensione di Chrome sviluppata da https://www.danskingdom.com, e la sua funzione principale è "Makes the GitHub Pull Request, Commit, and Blob pages span the full width of the browser.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Make GitHub Pages Full Width

Scarica i file di estensione Make GitHub Pages Full Width in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Make GitHub Pages Full Width Make GitHub Pages Full Width
ID dfpgjcidmobcpaoolhgchdcmdgenbaoa
URL Ufficiale https://chromewebstore.google.com/detail/make-github-pages-full-wi/dfpgjcidmobcpaoolhgchdcmdgenbaoa
Descrizione Makes the GitHub Pull Request, Commit, and Blob pages span the full width of the browser.
Dimensione del File 5.43 KB
Conteggio Installazioni 123
Versione Corrente 1.0
Ultimo Aggiornamento 2014-05-27
Data di Pubblicazione 2014-05-27
Valutazione 2.75/5 Totale 4 Valutazioni
Sviluppatore https://www.danskingdom.com
Tipo di Pagamento free
Lingue Supportate 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"
            ]
        }
    ]
}