Gerrit Reviews
Hello Chrome (from Gerrit).
Co je Gerrit Reviews?
Gerrit Reviews je rozšíření Chrome vyvinuté yuval.peress, a jeho hlavní funkcí je „Hello Chrome (from Gerrit).“.
Stáhnout soubor CRX rozšíření Gerrit Reviews
Stáhněte si soubory rozšíření Gerrit Reviews ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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
Základní Informace o Rozšíření
Název | Gerrit Reviews |
ID | kmepgiiggihoppjelbkcnbgjmamapdlg |
Oficiální URL | https://chromewebstore.google.com/detail/gerrit-reviews/kmepgiiggihoppjelbkcnbgjmamapdlg |
Popis | Hello Chrome (from Gerrit). |
Velikost souboru | 9.63 KB |
Počet instalací | 82 |
Aktuální Verze | 0.7 |
Poslední Aktualizace | 2016-10-18 |
Datum Vydání | 2016-10-18 |
Vývojář | yuval.peress |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/yperess/gerrit-chrome-extension |
Podporované Jazyky | 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 } } |