Bitbucket code review
Improvements to Bitbucket and JIRA for easier code reviewing
What is Bitbucket code review?
Bitbucket code review is a Chrome extension developed by Rene Saarsoo, and its main feature is "Improvements to Bitbucket and JIRA for easier code reviewing".
Extension Screenshots
Download Bitbucket code review Extension CRX File
Download Bitbucket code review extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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)
Extension Basic Information
Name | Bitbucket code review |
ID | odildldpegnccaajmpminocolianigjl |
Official URL | https://chromewebstore.google.com/detail/bitbucket-code-review/odildldpegnccaajmpminocolianigjl |
Description | Improvements to Bitbucket and JIRA for easier code reviewing |
File Size | 72.91 KB |
Installation Count | 80 |
Current Version | 1.0 |
Last Updated | 2016-04-27 |
Publish Date | 2016-04-27 |
Developer | Rene Saarsoo |
Payment Type | free |
Extension Website | https://github.com/nene/bitbucket-code-review |
Supported Languages | 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" ] } |