GitHub Code Review Helper
This extension Helps code review on GitHub
Qu'est-ce que GitHub Code Review Helper ?
GitHub Code Review Helper est une extension Chrome développée par moshe.zemah, et sa fonction principale est "This extension Helps code review on GitHub".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension GitHub Code Review Helper
Téléchargez les fichiers d'extension GitHub Code Review Helper au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
This extension helps the reviewer by adding a files tree left to the files diff in github. This way you can easily navigate to files, mark them as "Done", collapse/expand all files... Other useful feature: - Make the files header sticky (so when scrolling you always see which files are you looking at) - When in the conversation part of the Pull request, jump directly to the "Checks" part instead of scrolling all the way down (on key press) - "Checks" list is higher (so you won't need to scroll inside it - Jump to next/previous diff file - Jump to next/previous code review comment - Under "Files changed" tab - navigate to conversation tab with a single key stroke (no need to scroll all the way up)
Informations de Base sur l'Extension
Nom | GitHub Code Review Helper |
ID | pnklichompgfnakhgfoakpebjaidlpdk |
URL Officiel | https://chromewebstore.google.com/detail/github-code-review-helper/pnklichompgfnakhgfoakpebjaidlpdk |
Description | This extension Helps code review on GitHub |
Taille du Fichier | 455 KB |
Nombre d'Installations | 74 |
Version Actuelle | 2.3.3 |
Dernière Mise à Jour | 2020-12-10 |
Date de Publication | 2020-04-06 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | moshe.zemah |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "GitHub Code Review Helper", "description": "This extension Helps code review on GitHub", "version": "2.3.3", "browser_action": { "default_icon": "images\/icon.png", "default_popup": "src\/popup.html" }, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "js": [ "lib\/jquery-1.12.3.min.js", "src\/main.js", "src\/main\/AppInteractionService.js", "src\/main\/DecorationService.js", "src\/main\/HierarchyGeneratorService.js", "src\/main\/HotKeysService.js", "src\/main\/LocalStorageService.js", "src\/chrome-ext-init.js" ], "css": [ "icons\/file-icon-classic.css", "src\/main.css" ] } ], "web_accessible_resources": [ "images\/*.svg", "icons\/classic\/*.svg" ] } |