Github Expand Diff
A user script for Chrome that allows you to expand the missing lines in a Github diff.
Wat is Github Expand Diff?
Github Expand Diff is een Chrome-extensie ontwikkeld door Michael Ridgway, en de belangrijkste functie is "A user script for Chrome that allows you to expand the missing lines in a Github diff.".
Extensie Screenshots
Download het CRX-bestand van de extensie Github Expand Diff
Download Github Expand Diff-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Basisinformatie over de Extensie
Naam | Github Expand Diff |
ID | imakbajpbolcgnkfhhlhipbjppfomlij |
Officiële URL | https://chromewebstore.google.com/detail/github-expand-diff/imakbajpbolcgnkfhhlhipbjppfomlij |
Beschrijving | A user script for Chrome that allows you to expand the missing lines in a Github diff. |
Bestandsgrootte | 5.63 KB |
Aantal Installaties | 121 |
Huidige Versie | 0.0.1.6 |
Laatst Bijgewerkt | 2014-06-18 |
Publicatiedatum | 2014-06-18 |
Beoordeling | 3.86/5 Totaal 7 Beoordelingen |
Ontwikkelaar | Michael Ridgway |
Betalingswijze | free |
Extensiewebsite | https://github.com/mridgway/github-expand-diff |
Help Pagina-URL | https://github.com/mridgway/github-expand-diff/issues |
Ondersteunde Talen | 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" ] } ] } |