Bitbucket Pull Request File Review
Mark individual files as reviewed in Bitbucket Pull Requests
What is Bitbucket Pull Request File Review?
Bitbucket Pull Request File Review is a Chrome extension developed by vandenberghe.jeroen, and its main feature is "Mark individual files as reviewed in Bitbucket Pull Requests".
Extension Screenshots
Download Bitbucket Pull Request File Review Extension CRX File
Download Bitbucket Pull Request File 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
With this extension you can mark individual files as reviewed. It can help you review (big) pull requests. This extension brings you a fantastic feature of Github and an announced one for Bitbucket cloud: mark individual files of a pull request as reviewed. This extension only works with the new beta pull request experience of Atlassian Bitbucket cloud. You can enable this feature via a lab. We use the collapsible diffs feature as a way to mark files as reviewed and style them accordingly.
Extension Basic Information
Name | Bitbucket Pull Request File Review |
ID | bllckhlhnfngflclpdalooiehmijjbaf |
Official URL | https://chromewebstore.google.com/detail/bitbucket-pull-request-fi/bllckhlhnfngflclpdalooiehmijjbaf |
Description | Mark individual files as reviewed in Bitbucket Pull Requests |
File Size | 6.92 KB |
Installation Count | 50 |
Current Version | 1.3 |
Last Updated | 2020-12-09 |
Publish Date | 2020-11-24 |
Rating | 5.00/5 Total 1 Ratings |
Developer | vandenberghe.jeroen |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/JeroenVdb/bitbucket-pullrequest-file-review |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Bitbucket Pull Request File Review", "version": "1.3", "description": "Mark individual files as reviewed in Bitbucket Pull Requests", "manifest_version": 2, "permissions": [ "https:\/\/bitbucket.org\/*\/pull-requests\/*", "webNavigation", "activeTab" ], "content_scripts": [ { "matches": [ "https:\/\/bitbucket.org\/*\/pull-requests\/*" ], "js": [ "bb-pr-markfilesreviewed.js" ], "css": [ "styles.css" ], "run_at": "document_end" } ], "background": { "scripts": [ "background.js" ], "persistent": false } } |