GitHub Code Review Helper
This extension Helps code review on GitHub
¿Qué es GitHub Code Review Helper?
GitHub Code Review Helper es una extensión de Chrome desarrollada por moshe.zemah, y su función principal es "This extension Helps code review on GitHub".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión GitHub Code Review Helper
Descarga archivos de extensión GitHub Code Review Helper en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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)
Información Básica de la Extensión
Nombre | GitHub Code Review Helper |
ID | pnklichompgfnakhgfoakpebjaidlpdk |
URL Oficial | https://chromewebstore.google.com/detail/github-code-review-helper/pnklichompgfnakhgfoakpebjaidlpdk |
Descripción | This extension Helps code review on GitHub |
Tamaño del Archivo | 455 KB |
Cantidad de Instalaciones | 74 |
Versión Actual | 2.3.3 |
Última Actualización | 2020-12-10 |
Fecha de Publicación | 2020-04-06 |
Calificación | 5.00/5 Total de 1 Calificaciones |
Desarrollador | moshe.zemah |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | 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" ] } |