Widescreen for GitHub

Toggle the width of GitHub with a click

Co je Widescreen for GitHub?

Widescreen for GitHub je rozšíření Chrome vyvinuté Søren Louv-Jansen, a jeho hlavní funkcí je „Toggle the width of GitHub with a click“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Widescreen for GitHub

Stáhněte si soubory rozšíření Widescreen for GitHub ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Widescreen for GitHub Widescreen for GitHub
ID elikdceclccjilahimjfceoalhdbndan
Oficiální URL https://chromewebstore.google.com/detail/widescreen-for-github/elikdceclccjilahimjfceoalhdbndan
Popis Toggle the width of GitHub with a click
Velikost souboru 1.94 MB
Počet instalací 2,604
Aktuální Verze 0.7.5
Poslední Aktualizace 2020-11-10
Datum Vydání 2020-07-02
Hodnocení 4.21/5 Celkem 24 Hodnocení
Vývojář Søren Louv-Jansen
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/sqren/github-widescreen
URL Stránky Nápovědy https://github.com/sqren/github-widescreen
Podporované Jazyky 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"
            ]
        }
    ]
}