Bitbucket code review
Improvements to Bitbucket and JIRA for easier code reviewing
Co je Bitbucket code review?
Bitbucket code review je rozšíření Chrome vyvinuté Rene Saarsoo, a jeho hlavní funkcí je „Improvements to Bitbucket and JIRA for easier code reviewing“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Bitbucket code review
Stáhněte si soubory rozšíření Bitbucket code review 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í
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)
Základní Informace o Rozšíření
Název | Bitbucket code review |
ID | odildldpegnccaajmpminocolianigjl |
Oficiální URL | https://chromewebstore.google.com/detail/bitbucket-code-review/odildldpegnccaajmpminocolianigjl |
Popis | Improvements to Bitbucket and JIRA for easier code reviewing |
Velikost souboru | 72.91 KB |
Počet instalací | 80 |
Aktuální Verze | 1.0 |
Poslední Aktualizace | 2016-04-27 |
Datum Vydání | 2016-04-27 |
Vývojář | Rene Saarsoo |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/nene/bitbucket-code-review |
Podporované Jazyky | 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" ] } |