GitHub Code Review Helper
This extension Helps code review on GitHub
Vad är GitHub Code Review Helper?
GitHub Code Review Helper är en Chrome-tillägg utvecklad av moshe.zemah, och dess huvudfunktion är "This extension Helps code review on GitHub".
Tilläggsskärmbilder
Ladda ner GitHub Code Review Helper-förlängningens CRX-fil
Ladda ner GitHub Code Review Helper-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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) Grundläggande Information om Tillägg
| Namn | |
| ID | pnklichompgfnakhgfoakpebjaidlpdk |
| Officiell webbadress | https://chromewebstore.google.com/detail/github-code-review-helper/pnklichompgfnakhgfoakpebjaidlpdk |
| Beskrivning | This extension Helps code review on GitHub |
| Filstorlek | 455 KB |
| Antal Installationer | 74 |
| Aktuell Version | 2.3.3 |
| Senast Uppdaterad | 2020-12-10 |
| Publiceringsdatum | 2020-04-06 |
| Betyg | 5.00/5 Totalt 1 Betyg |
| Utvecklare | moshe.zemah |
| E-post | [email protected] |
| Betalningssätt | free |
| Stödda Språk | 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"
]
} | |