Gerrit Reviews
Hello Chrome (from Gerrit).
Что такое Gerrit Reviews?
Gerrit Reviews - это расширение Chrome, разработанное yuval.peress, и его основная функция - "Hello Chrome (from Gerrit).".
Скачать файл CRX расширения Gerrit Reviews
Скачайте файлы расширений 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 } } |