Gerrit Reviews
Hello Chrome (from Gerrit).
什麼是Gerrit Reviews?
Gerrit Reviews是由yuval.peress開發的Chrome擴展程式,該擴展的主要功能是“Hello Chrome (from Gerrit).”。
下載Gerrit Reviews擴展crx文件
下載Gerrit Reviews擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Tool used to get quick updated for gerrit code reviews.
If a custom query is specified, make sure it includes the LABELS option via appending "&o=LABELS" to the query. To use the default inbound reviews simply leave the query parameter blank.
Please file any bugs to GitHub at https://github.com/yperess/gerrit-chrome-extension/issues 擴展基本資訊
| 名稱 | |
| ID | kmepgiiggihoppjelbkcnbgjmamapdlg |
| 官方網址 | https://chromewebstore.google.com/detail/gerrit-reviews/kmepgiiggihoppjelbkcnbgjmamapdlg |
| 簡介 | Hello Chrome (from Gerrit). |
| 檔案大小 | 9.63 KB |
| 安裝次數 | 82 |
| 目前版本 | 0.7 |
| 更新時間 | 2016-10-18 |
| 上架時間 | 2016-10-18 |
| 開發者 | yuval.peress |
| 付費類型 | free |
| 擴展官網 | https://github.com/yperess/gerrit-chrome-extension |
| 支援的語言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Gerrit Reviews",
"description": "Hello Chrome (from Gerrit).",
"version": "0.7",
"permissions": [
"alarms",
"storage",
"tabs",
"webNavigation",
"webRequest",
"webRequestBlocking",
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"background": {
"scripts": [
"background.js",
"gerrit-api.js"
],
"persistent": true
},
"options_ui": {
"page": "options.html",
"chrome_style": true
}
} | |