Widescreen for GitHub

Toggle the width of GitHub with a click

Cos'è Widescreen for GitHub?

Widescreen for GitHub è un'estensione di Chrome sviluppata da Søren Louv-Jansen, e la sua funzione principale è "Toggle the width of GitHub with a click".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Widescreen for GitHub

Scarica i file di estensione Widescreen for GitHub 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

                        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                    

Informazioni di Base sull'Estensione

Nome Widescreen for GitHub Widescreen for GitHub
ID elikdceclccjilahimjfceoalhdbndan
URL Ufficiale https://chromewebstore.google.com/detail/widescreen-for-github/elikdceclccjilahimjfceoalhdbndan
Descrizione Toggle the width of GitHub with a click
Dimensione del File 1.94 MB
Conteggio Installazioni 2,604
Versione Corrente 0.7.5
Ultimo Aggiornamento 2020-11-10
Data di Pubblicazione 2020-07-02
Valutazione 4.21/5 Totale 24 Valutazioni
Sviluppatore Søren Louv-Jansen
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/sqren/github-widescreen
URL della Pagina di Aiuto https://github.com/sqren/github-widescreen
Lingue Supportate 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"
            ]
        }
    ]
}