GitHub Reviewer
Make code review easier in GitHub.
什么是GitHub Reviewer?
GitHub Reviewer是由auiWorks开发的Chrome扩展程序,该扩展的主要功能是“Make code review easier in GitHub.”。
扩展截图
下载GitHub Reviewer扩展crx文件
下载GitHub Reviewer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Features:
- Fold/expand files in GitHub Pull Request's "Files Changed"
- Auto fold file which matches patterns defined
Ideas:
- Stars Management
GitHub Repository:
https://github.com/auiWorks/GitHub-Reviewer 扩展基本信息
| 名称 | |
| ID | cgkhabhmjiofemilijihohcgbiachdgm |
| 官方URL | https://chromewebstore.google.com/detail/github-reviewer/cgkhabhmjiofemilijihohcgbiachdgm |
| 简介 | Make code review easier in GitHub. |
| 文件大小 | 65.36 KB |
| 安装次数 | 27 |
| 当前版本 | 0.0.6 |
| 更新时间 | 2014-01-29 |
| 上架时间 | 2014-01-28 |
| 评分 | 3.50/5 共2次评分 |
| 开发者 | auiWorks |
| 付费类型 | free |
| 扩展官网 | https://github.com/auiWorks/GitHub-Reviewer |
| 帮助页面URL | https://github.com/auiWorks/GitHub-Reviewer/issues |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "__MSG_appName__",
"description": "__MSG_appDesc__",
"default_locale": "en",
"icons": {
"128": "image\/icon128.png"
},
"version": "0.0.6",
"minimum_chrome_version": "22",
"options_page": "settings.html",
"content_scripts": [
{
"matches": [
"*:\/\/github.com\/*\/pull\/*"
],
"css": [
"style\/content\/pull.css"
],
"js": [
"script\/lib\/jquery.min.js",
"script\/content\/pull.js"
],
"run_at": "document_end"
}
],
"permissions": [
"storage",
"*:\/\/github.com\/*\/pull\/*"
],
"content_security_policy": "script-src 'self' https:\/\/apis.google.com https:\/\/platform.twitter.com; object-src 'self'"
} | |