Make GitHub Pages Full Width

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

¿Qué es Make GitHub Pages Full Width?

Make GitHub Pages Full Width es una extensión de Chrome desarrollada por https://www.danskingdom.com, y su función principal es "Makes the GitHub Pull Request, Commit, and Blob pages span the full width of the browser.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Make GitHub Pages Full Width

Descarga archivos de extensión Make GitHub Pages Full Width en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Make GitHub Pages Full Width Make GitHub Pages Full Width
ID dfpgjcidmobcpaoolhgchdcmdgenbaoa
URL Oficial https://chromewebstore.google.com/detail/make-github-pages-full-wi/dfpgjcidmobcpaoolhgchdcmdgenbaoa
Descripción Makes the GitHub Pull Request, Commit, and Blob pages span the full width of the browser.
Tamaño del Archivo 5.43 KB
Cantidad de Instalaciones 123
Versión Actual 1.0
Última Actualización 2014-05-27
Fecha de Publicación 2014-05-27
Calificación 2.75/5 Total de 4 Calificaciones
Desarrollador https://www.danskingdom.com
Tipo de Pago free
Idiomas Soportados 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"
            ]
        }
    ]
}