Bitbucket code review
Improvements to Bitbucket and JIRA for easier code reviewing
Cos'è Bitbucket code review?
Bitbucket code review è un'estensione di Chrome sviluppata da Rene Saarsoo, e la sua funzione principale è "Improvements to Bitbucket and JIRA for easier code reviewing".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Bitbucket code review
Scarica i file di estensione Bitbucket code review 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
Mark-as-read functionality for commits and parts of commits in Bitbucket and JIRA. - Mark commits as read/unread in both Bitbucket and JIRA - Hide reviewed file diffs in bitbucket commit page - Ignore commits of specified authors (configured in options)
Informazioni di Base sull'Estensione
Nome | Bitbucket code review |
ID | odildldpegnccaajmpminocolianigjl |
URL Ufficiale | https://chromewebstore.google.com/detail/bitbucket-code-review/odildldpegnccaajmpminocolianigjl |
Descrizione | Improvements to Bitbucket and JIRA for easier code reviewing |
Dimensione del File | 72.91 KB |
Conteggio Installazioni | 80 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2016-04-27 |
Data di Pubblicazione | 2016-04-27 |
Sviluppatore | Rene Saarsoo |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/nene/bitbucket-code-review |
Lingue Supportate | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Bitbucket code review", "short_name": "Bitbucket CR", "description": "Improvements to Bitbucket and JIRA for easier code reviewing", "version": "1.0", "icons": { "128": "icons\/icon-128.png", "48": "icons\/icon-48.png", "16": "icons\/icon-16.png" }, "content_scripts": [ { "matches": [ "https:\/\/bitbucket.org\/*\/commits\/*" ], "js": [ "dist\/bitbucket.js" ], "css": [ "styles.css" ] }, { "matches": [ "https:\/\/*.atlassian.net\/browse\/*" ], "js": [ "dist\/jira.js" ], "css": [ "styles.css" ] } ], "options_ui": { "page": "options.html", "chrome_style": true }, "permissions": [ "storage" ] } |