Gerrit Reviews
Hello Chrome (from Gerrit).
Vad är Gerrit Reviews?
Gerrit Reviews är en Chrome-tillägg utvecklad av yuval.peress, och dess huvudfunktion är "Hello Chrome (from Gerrit).".
Ladda ner Gerrit Reviews-förlängningens CRX-fil
Ladda ner Gerrit Reviews-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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 Grundläggande Information om Tillägg
| Namn | |
| ID | kmepgiiggihoppjelbkcnbgjmamapdlg |
| Officiell webbadress | https://chromewebstore.google.com/detail/gerrit-reviews/kmepgiiggihoppjelbkcnbgjmamapdlg |
| Beskrivning | Hello Chrome (from Gerrit). |
| Filstorlek | 9.63 KB |
| Antal Installationer | 82 |
| Aktuell Version | 0.7 |
| Senast Uppdaterad | 2016-10-18 |
| Publiceringsdatum | 2016-10-18 |
| Utvecklare | yuval.peress |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/yperess/gerrit-chrome-extension |
| Stödda Språk | 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
}
} | |