GitHub code review
This extension adds hot keys and hierarchical file view to GitHub pull request pages.
Co je GitHub code review?
GitHub code review je rozšíření Chrome vyvinuté Unknown, a jeho hlavní funkcí je „This extension adds hot keys and hierarchical file view to GitHub pull request pages.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření GitHub code review
Stáhněte si soubory rozšíření GitHub code review 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í
When viewing file diffs in a GitHub pull request: - Jump between diffs with j/k keys. - Jump between comments with n/p keys. - Press z key to view a hierarchical representation of the changed files. Each file in a hierarchy also shows a count of comments.
Základní Informace o Rozšíření
Název | GitHub code review |
ID | lminappfllpnijhgafphnmcdfbnppmac |
Oficiální URL | https://chromewebstore.google.com/detail/github-code-review/lminappfllpnijhgafphnmcdfbnppmac |
Popis | This extension adds hot keys and hierarchical file view to GitHub pull request pages. |
Velikost souboru | 54.71 KB |
Počet instalací | 324 |
Aktuální Verze | 1.1.20 |
Poslední Aktualizace | 2020-04-18 |
Datum Vydání | 2020-04-18 |
Hodnocení | 4.29/5 Celkem 7 Hodnocení |
Vývojář | Unknown |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/irek02/chrome-github-code-review |
Podporované Jazyky | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "GitHub code review", "description": "This extension adds hot keys and hierarchical file view to GitHub pull request pages.", "version": "1.1.20", "browser_action": { "default_icon": "images\/icon.png", "default_popup": "src\/popup.html" }, "permissions": [ "activeTab", "https:\/\/ajax.googleapis.com\/", "storage" ], "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "js": [ "lib\/jquery-1.12.3.min.js", "src\/main.min.js", "src\/chrome-ext-init.js" ], "css": [ "src\/main.css" ] } ], "web_accessible_resources": [ "images\/*.svg" ] } |