Wide GitHub

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

Was ist Wide GitHub?

Wide GitHub ist eine Chrome-Erweiterung, die von xthexder entwickelt wurde, und ihr Hauptmerkmal ist "Change all GitHub repository and gist pages to be full width and dynamically sized.".

Erweiterungsscreenshots

screenshot
screenshot

Wide GitHub-Erweiterungs-CRX-Datei herunterladen

Laden Sie Wide GitHub-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Wide GitHub Wide GitHub
ID kaalofacklcidaampbokdplbklpeldpj
Offizielle URL https://chromewebstore.google.com/detail/wide-github/kaalofacklcidaampbokdplbklpeldpj
Beschreibung Change all GitHub repository and gist pages to be full width and dynamically sized.
Dateigröße 17.76 KB
Installationsanzahl 7,602
Aktuelle Version 1.6.5 MV3
Letztes Update 2024-02-07
Veröffentlichungsdatum 2020-06-26
Bewertung 4.55/5 Insgesamt 66 Bewertungen
Entwickler xthexder
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/xthexder/wide-github
Hilfeseite URL https://github.com/xthexder/wide-github/issues
Unterstützte Sprachen 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"
    }
}