GitHub code review
This extension adds hot keys and hierarchical file view to GitHub pull request pages.
Wat is GitHub code review?
GitHub code review is een Chrome-extensie ontwikkeld door Unknown, en de belangrijkste functie is "This extension adds hot keys and hierarchical file view to GitHub pull request pages.".
Extensie Screenshots
Download het CRX-bestand van de extensie GitHub code review
Download GitHub code review-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | GitHub code review |
ID | lminappfllpnijhgafphnmcdfbnppmac |
Officiële URL | https://chromewebstore.google.com/detail/github-code-review/lminappfllpnijhgafphnmcdfbnppmac |
Beschrijving | This extension adds hot keys and hierarchical file view to GitHub pull request pages. |
Bestandsgrootte | 54.71 KB |
Aantal Installaties | 324 |
Huidige Versie | 1.1.20 |
Laatst Bijgewerkt | 2020-04-18 |
Publicatiedatum | 2020-04-18 |
Beoordeling | 4.29/5 Totaal 7 Beoordelingen |
Ontwikkelaar | Unknown |
Betalingswijze | free |
Extensiewebsite | https://github.com/irek02/chrome-github-code-review |
Ondersteunde Talen | 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" ] } |