Review on GitHub
Review repositories on GitHub like a Pull Request
什么是Review on GitHub?
Review on GitHub是由Sebastian Gräßl开发的Chrome扩展程序,该扩展的主要功能是“Review repositories on GitHub like a Pull Request”。
扩展截图
下载Review on GitHub扩展crx文件
下载Review on GitHub扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension adds the ability to github.com to make notes in files and add them as a compiled list to an issue. 扩展基本信息
| 名称 | |
| ID | eenlonmglmdookfbknbmcgjkpomndjdp |
| 官方URL | https://chromewebstore.google.com/detail/review-on-github/eenlonmglmdookfbknbmcgjkpomndjdp |
| 简介 | Review repositories on GitHub like a Pull Request |
| 文件大小 | 25.81 KB |
| 安装次数 | 115 |
| 当前版本 | 1.0.1 |
| 更新时间 | 2016-05-12 |
| 上架时间 | 2016-05-12 |
| 开发者 | Sebastian Gräßl |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/bastilian/ReviewOnGitHub |
| 帮助页面URL | https://github.com/bastilian/ReviewOnGitHub/issues |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Review on GitHub",
"description": "Review repositories on GitHub like a Pull Request",
"version": "1.0.1",
"icons": {
"256": "icon.png"
},
"permissions": [
"https:\/\/github.com\/*"
],
"web_accessible_resources": [
"vendor\/marked.min.js",
"components\/notes-button.js",
"components\/note-link.js",
"components\/file-view.js",
"components\/note-form.js",
"components\/line-note.js",
"components\/notes-list.js",
"lib.js",
"db.js",
"review.js",
"review.css"
],
"content_scripts": [
{
"matches": [
"https:\/\/github.com\/*"
],
"css": [
"review.css"
],
"js": [
"inject.js"
]
}
]
} | |