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
扩展基本信息
名称 | Gerrit Reviews |
ID | kmepgiiggihoppjelbkcnbgjmamapdlg |
官方URL | 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 } } |