Github diff helper
When you have too many files in one github diff, this extension helps you filter out the noise
Was ist Github diff helper?
Github diff helper ist eine Chrome-Erweiterung, die von https://alexw.me entwickelt wurde, und ihr Hauptmerkmal ist "When you have too many files in one github diff, this extension helps you filter out the noise".
Erweiterungsscreenshots
Github diff helper-Erweiterungs-CRX-Datei herunterladen
Laden Sie Github diff helper-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
★★★★★ Updated to work with the new github async loading files ★★★★★ Github's diff views are terrific, they let you code review easily, but sometimes there's too much to go over! This extension lets you filter out the noise. Adding a small button in the Github diff view, you can select which file types you want to hide. Especially useful when you compile your css with SCSS/LESS, and you don't want to go over tons of generated css files. Or when you write CofeeScript and don't want to go over the generated js files. The extension also helps multiple code reviewers, when you are only in charge of code reviewing a small portion of a large diff. Let me know what you think, issues can be posted here : https://github.com/altryne/Github-diff-extension/issues
Grundlegende Informationen zur Erweiterung
Name | Github diff helper |
ID | dhggdgaoccikibijlbocggphcomehbih |
Offizielle URL | https://chromewebstore.google.com/detail/github-diff-helper/dhggdgaoccikibijlbocggphcomehbih |
Beschreibung | When you have too many files in one github diff, this extension helps you filter out the noise |
Dateigröße | 137 KB |
Installationsanzahl | 203 |
Aktuelle Version | 0.1.1 |
Letztes Update | 2017-04-14 |
Veröffentlichungsdatum | 2017-04-14 |
Bewertung | 5.00/5 Insgesamt 3 Bewertungen |
Entwickler | https://alexw.me |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/altryne/Github-diff-extension |
Hilfeseite URL | https://github.com/altryne/Github-diff-extension/issues |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Github diff helper", "version": "0.1.1", "manifest_version": 2, "description": "When you have too many files in one github diff, this extension helps you filter out the noise", "homepage_url": "http:\/\/extensionizr.com", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon128.png", "128": "icons\/icon128.png" }, "permissions": [ "https:\/\/github.com\/*", "tabs" ], "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "css": [ "src\/inject\/inject.css" ] }, { "matches": [ "https:\/\/github.com\/*" ], "js": [ "js\/jquery\/dist\/jquery.min.js", "js\/underscore.min.js", "src\/inject\/inject.js" ], "run_at": "document_start" } ] } |