GitHub Code Review Helper
This extension Helps code review on GitHub
什麼是GitHub Code Review Helper?
GitHub Code Review Helper是由moshe.zemah開發的Chrome擴展程式,該擴展的主要功能是“This extension Helps code review on GitHub”。
擴展截圖
下載GitHub Code Review Helper擴展crx文件
下載GitHub Code Review Helper擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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)
擴展基本資訊
名稱 | GitHub Code Review Helper |
ID | pnklichompgfnakhgfoakpebjaidlpdk |
官方網址 | https://chromewebstore.google.com/detail/github-code-review-helper/pnklichompgfnakhgfoakpebjaidlpdk |
簡介 | This extension Helps code review on GitHub |
檔案大小 | 455 KB |
安裝次數 | 74 |
目前版本 | 2.3.3 |
更新時間 | 2020-12-10 |
上架時間 | 2020-04-06 |
評分 | 5.00/5 共 1 次評分 |
開發者 | moshe.zemah |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | 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" ] } |