Wide GitHub

Change all GitHub repository and gist pages to be full width and dynamically sized.

Co je Wide GitHub?

Wide GitHub je rozšíření Chrome vyvinuté xthexder, a jeho hlavní funkcí je „Change all GitHub repository and gist pages to be full width and dynamically sized.“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Wide GitHub

Stáhněte si soubory rozšíření Wide 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í

                        Features:
 - Read long lines of code without scrolling left to right
 - See more documentation at once when using large / high-dpi monitors
 - Easily toggleable for viewing size-dependent docs or wiki pages.                    

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

Název Wide GitHub Wide GitHub
ID kaalofacklcidaampbokdplbklpeldpj
Oficiální URL https://chromewebstore.google.com/detail/wide-github/kaalofacklcidaampbokdplbklpeldpj
Popis Change all GitHub repository and gist pages to be full width and dynamically sized.
Velikost souboru 17.76 KB
Počet instalací 7,602
Aktuální Verze 1.6.5 MV3
Poslední Aktualizace 2024-02-07
Datum Vydání 2020-06-26
Hodnocení 4.55/5 Celkem 66 Hodnocení
Vývojář xthexder
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/xthexder/wide-github
URL Stránky Nápovědy https://github.com/xthexder/wide-github/issues
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Wide GitHub",
    "description": "Change all GitHub repository and gist pages to be full width and dynamically sized.",
    "version": "1.6.5",
    "version_name": "1.6.5 MV3",
    "icons": {
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "action": {
        "default_icon": "icons\/icon.png",
        "default_title": "Toggle Wide GitHub"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*",
                "https:\/\/gist.github.com\/*"
            ],
            "css": [
                "wide-github.css"
            ],
            "js": [
                "wide-github-toggle.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    }
}