Github diff helper
When you have too many files in one github diff, this extension helps you filter out the noise
Co je Github diff helper?
Github diff helper je rozšíření Chrome vyvinuté https://alexw.me, a jeho hlavní funkcí je „When you have too many files in one github diff, this extension helps you filter out the noise“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Github diff helper
Stáhněte si soubory rozšíření Github diff helper ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
★★★★★ 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
Základní Informace o Rozšíření
Název | Github diff helper |
ID | dhggdgaoccikibijlbocggphcomehbih |
Oficiální URL | https://chromewebstore.google.com/detail/github-diff-helper/dhggdgaoccikibijlbocggphcomehbih |
Popis | When you have too many files in one github diff, this extension helps you filter out the noise |
Velikost souboru | 137 KB |
Počet instalací | 203 |
Aktuální Verze | 0.1.1 |
Poslední Aktualizace | 2017-04-14 |
Datum Vydání | 2017-04-14 |
Hodnocení | 5.00/5 Celkem 3 Hodnocení |
Vývojář | https://alexw.me |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/altryne/Github-diff-extension |
URL Stránky Nápovědy | https://github.com/altryne/Github-diff-extension/issues |
Podporované Jazyky | 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" } ] } |