Github Expand Diff

A user script for Chrome that allows you to expand the missing lines in a Github diff.

Qu'est-ce que Github Expand Diff ?

Github Expand Diff est une extension Chrome développée par Michael Ridgway, et sa fonction principale est "A user script for Chrome that allows you to expand the missing lines in a Github diff.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Github Expand Diff

Téléchargez les fichiers d'extension Github Expand Diff 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

                                            

Informations de Base sur l'Extension

Nom Github Expand Diff Github Expand Diff
ID imakbajpbolcgnkfhhlhipbjppfomlij
URL Officiel https://chromewebstore.google.com/detail/github-expand-diff/imakbajpbolcgnkfhhlhipbjppfomlij
Description A user script for Chrome that allows you to expand the missing lines in a Github diff.
Taille du Fichier 5.63 KB
Nombre d'Installations 121
Version Actuelle 0.0.1.6
Dernière Mise à Jour 2014-06-18
Date de Publication 2014-06-18
Évaluation 3.86/5 Total 7 Évaluations
Développeur Michael Ridgway
Type de Paiement free
Site Web de l'Extension https://github.com/mridgway/github-expand-diff
URL de la Page d'Aide https://github.com/mridgway/github-expand-diff/issues
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Github Expand Diff",
    "version": "0.0.1.6",
    "description": "A user script for Chrome that allows you to expand the missing lines in a Github diff.",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.com\/*\/*\/pull\/*",
                "https:\/\/*.com\/*\/*\/commit\/*",
                "https:\/\/*.com\/*\/*\/compare\/*"
            ],
            "include_globs": [
                "https:\/\/github.com\/*",
                "https:\/\/github.*.com\/*",
                "https:\/\/git.*.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "github-expand-diff.user.js"
            ]
        }
    ]
}