Bitbucket Pull Request File Review

Mark individual files as reviewed in Bitbucket Pull Requests

Bitbucket Pull Request File Review là gì?

Bitbucket Pull Request File Review là một tiện ích mở rộng Chrome được phát triển bởi vandenberghe.jeroen, và tính năng chính của nó là "Mark individual files as reviewed in Bitbucket Pull Requests".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Bitbucket Pull Request File Review

Tải xuống các tệp mở rộng Bitbucket Pull Request File Review dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Bitbucket Pull Request File Review Bitbucket Pull Request File Review
ID bllckhlhnfngflclpdalooiehmijjbaf
URL Chính Thức https://chromewebstore.google.com/detail/bitbucket-pull-request-fi/bllckhlhnfngflclpdalooiehmijjbaf
Mô tả Mark individual files as reviewed in Bitbucket Pull Requests
Kích Thước Tệp 6.92 KB
Số Lần Cài Đặt 50
Phiên Bản Hiện Tại 1.3
Cập Nhật Lần Cuối 2020-12-09
Ngày Phát Hành 2020-11-24
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển vandenberghe.jeroen
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/JeroenVdb/bitbucket-pullrequest-file-review
Ngôn Ngữ Được Hỗ Trợ 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
    }
}