Gerrit Reviews
Hello Chrome (from Gerrit).
Co to jest Gerrit Reviews?
Gerrit Reviews to rozszerzenie Chrome opracowane przez yuval.peress, a jego główną funkcją jest „Hello Chrome (from Gerrit).”.
Pobierz plik CRX rozszerzenia Gerrit Reviews
Pobierz pliki rozszerzeń Gerrit Reviews w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | Gerrit Reviews |
ID | kmepgiiggihoppjelbkcnbgjmamapdlg |
Oficjalny URL | https://chromewebstore.google.com/detail/gerrit-reviews/kmepgiiggihoppjelbkcnbgjmamapdlg |
Opis | Hello Chrome (from Gerrit). |
Rozmiar pliku | 9.63 KB |
Liczba instalacji | 82 |
Aktualna Wersja | 0.7 |
Ostatnia Aktualizacja | 2016-10-18 |
Data Publikacji | 2016-10-18 |
Deweloper | yuval.peress |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/yperess/gerrit-chrome-extension |
Obsługiwane Języki | 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 } } |