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 |
| 官方網址 | 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"
]
}
]
} | |