GitHub code review
This extension adds hot keys and hierarchical file view to GitHub pull request pages.
什么是GitHub code review?
GitHub code review是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“This extension adds hot keys and hierarchical file view to GitHub pull request pages.”。
扩展截图
下载GitHub code review扩展crx文件
下载GitHub code review扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | GitHub code review |
ID | lminappfllpnijhgafphnmcdfbnppmac |
官方URL | https://chromewebstore.google.com/detail/github-code-review/lminappfllpnijhgafphnmcdfbnppmac |
简介 | This extension adds hot keys and hierarchical file view to GitHub pull request pages. |
文件大小 | 54.71 KB |
安装次数 | 324 |
当前版本 | 1.1.20 |
更新时间 | 2020-04-18 |
上架时间 | 2020-04-18 |
评分 | 4.29/5 共7次评分 |
开发者 | Unknown |
付费类型 | free |
扩展官网 | https://github.com/irek02/chrome-github-code-review |
支持的语言 | 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" ] } |