Github Expand Diff
A user script for Chrome that allows you to expand the missing lines in a Github diff.
Was ist Github Expand Diff?
Github Expand Diff ist eine Chrome-Erweiterung, die von Michael Ridgway entwickelt wurde, und ihr Hauptmerkmal ist "A user script for Chrome that allows you to expand the missing lines in a Github diff.".
Erweiterungsscreenshots
Github Expand Diff-Erweiterungs-CRX-Datei herunterladen
Laden Sie Github Expand Diff-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
Grundlegende Informationen zur Erweiterung
Name | Github Expand Diff |
ID | imakbajpbolcgnkfhhlhipbjppfomlij |
Offizielle URL | https://chromewebstore.google.com/detail/github-expand-diff/imakbajpbolcgnkfhhlhipbjppfomlij |
Beschreibung | A user script for Chrome that allows you to expand the missing lines in a Github diff. |
Dateigröße | 5.63 KB |
Installationsanzahl | 121 |
Aktuelle Version | 0.0.1.6 |
Letztes Update | 2014-06-18 |
Veröffentlichungsdatum | 2014-06-18 |
Bewertung | 3.86/5 Insgesamt 7 Bewertungen |
Entwickler | Michael Ridgway |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/mridgway/github-expand-diff |
Hilfeseite URL | https://github.com/mridgway/github-expand-diff/issues |
Unterstützte Sprachen | 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" ] } ] } |