Github Expand Diff
A user script for Chrome that allows you to expand the missing lines in a Github diff.
Vad är Github Expand Diff?
Github Expand Diff är en Chrome-tillägg utvecklad av Michael Ridgway, och dess huvudfunktion är "A user script for Chrome that allows you to expand the missing lines in a Github diff.".
Tilläggsskärmbilder
Ladda ner Github Expand Diff-förlängningens CRX-fil
Ladda ner Github Expand Diff-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Grundläggande Information om Tillägg
Namn | Github Expand Diff |
ID | imakbajpbolcgnkfhhlhipbjppfomlij |
Officiell webbadress | https://chromewebstore.google.com/detail/github-expand-diff/imakbajpbolcgnkfhhlhipbjppfomlij |
Beskrivning | A user script for Chrome that allows you to expand the missing lines in a Github diff. |
Filstorlek | 5.63 KB |
Antal Installationer | 121 |
Aktuell Version | 0.0.1.6 |
Senast Uppdaterad | 2014-06-18 |
Publiceringsdatum | 2014-06-18 |
Betyg | 3.86/5 Totalt 7 Betyg |
Utvecklare | Michael Ridgway |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/mridgway/github-expand-diff |
Hjälpsida URL | https://github.com/mridgway/github-expand-diff/issues |
Stödda Språk | 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" ] } ] } |