Gerrit Reviews
Hello Chrome (from Gerrit).
Cos'è Gerrit Reviews?
Gerrit Reviews è un'estensione di Chrome sviluppata da yuval.peress, e la sua funzione principale è "Hello Chrome (from Gerrit).".
Scarica il file CRX dell'estensione Gerrit Reviews
Scarica i file di estensione Gerrit Reviews in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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 Informazioni di Base sull'Estensione
| Nome | |
| ID | kmepgiiggihoppjelbkcnbgjmamapdlg |
| URL Ufficiale | https://chromewebstore.google.com/detail/gerrit-reviews/kmepgiiggihoppjelbkcnbgjmamapdlg |
| Descrizione | Hello Chrome (from Gerrit). |
| Dimensione del File | 9.63 KB |
| Conteggio Installazioni | 82 |
| Versione Corrente | 0.7 |
| Ultimo Aggiornamento | 2016-10-18 |
| Data di Pubblicazione | 2016-10-18 |
| Sviluppatore | yuval.peress |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/yperess/gerrit-chrome-extension |
| Lingue Supportate | 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
}
} | |