Widescreen for GitHub

Toggle the width of GitHub with a click

¿Qué es Widescreen for GitHub?

Widescreen for GitHub es una extensión de Chrome desarrollada por Søren Louv-Jansen, y su función principal es "Toggle the width of GitHub with a click".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Widescreen for GitHub

Descarga archivos de extensión Widescreen for GitHub 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

                        Often the lines of code on Github are too long to fit within the fixed 920px width. This extension will take full advantage of your screen and show the code in 100% width! It works for all content on Github: PRs, commits, Gists, etc.

It is easy to toggle the width on/off whenever you need it - it even comes with a nice transition.

Bugs: https://github.com/sqren/github-widescreen/issues
Fork: https://github.com/sqren/github-widescreen                    

Información Básica de la Extensión

Nombre Widescreen for GitHub Widescreen for GitHub
ID elikdceclccjilahimjfceoalhdbndan
URL Oficial https://chromewebstore.google.com/detail/widescreen-for-github/elikdceclccjilahimjfceoalhdbndan
Descripción Toggle the width of GitHub with a click
Tamaño del Archivo 1.94 MB
Cantidad de Instalaciones 2,604
Versión Actual 0.7.5
Última Actualización 2020-11-10
Fecha de Publicación 2020-07-02
Calificación 4.21/5 Total de 24 Calificaciones
Desarrollador Søren Louv-Jansen
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/sqren/github-widescreen
URL de la Página de Ayuda https://github.com/sqren/github-widescreen
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Widescreen for GitHub",
    "short_name": "Widescreen for Github",
    "description": "Toggle the width of GitHub with a click",
    "version": "0.7.5",
    "icons": {
        "16": "images\/icon-16.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "permissions": [
        "https:\/\/github.com\/*",
        "storage"
    ],
    "browser_action": {
        "default_icon": {
            "19": "images\/icon-19.png",
            "38": "images\/icon-38.png"
        }
    },
    "background": {
        "scripts": [
            "background-scripts.js"
        ]
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/*.github.com\/*"
            ],
            "js": [
                "content-scripts.js"
            ],
            "css": [
                "content-styles.css"
            ]
        }
    ]
}