Wide GitHub

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

Qu'est-ce que Wide GitHub ?

Wide GitHub est une extension Chrome développée par xthexder, et sa fonction principale est "Change all GitHub repository and gist pages to be full width and dynamically sized.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Wide GitHub

Téléchargez les fichiers d'extension Wide GitHub au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Wide GitHub Wide GitHub
ID kaalofacklcidaampbokdplbklpeldpj
URL Officiel https://chromewebstore.google.com/detail/wide-github/kaalofacklcidaampbokdplbklpeldpj
Description Change all GitHub repository and gist pages to be full width and dynamically sized.
Taille du Fichier 17.76 KB
Nombre d'Installations 7,602
Version Actuelle 1.6.5 MV3
Dernière Mise à Jour 2024-02-07
Date de Publication 2020-06-26
Évaluation 4.55/5 Total 66 Évaluations
Développeur xthexder
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/xthexder/wide-github
URL de la Page d'Aide https://github.com/xthexder/wide-github/issues
Langues Prises en Charge 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"
    }
}