Bitbucket Pull Request File Review

Mark individual files as reviewed in Bitbucket Pull Requests

什么是Bitbucket Pull Request File Review?

Bitbucket Pull Request File Review是由vandenberghe.jeroen开发的Chrome扩展程序,该扩展的主要功能是“Mark individual files as reviewed in Bitbucket Pull Requests”。

扩展截图

screenshot
screenshot

下载Bitbucket Pull Request File Review扩展crx文件

下载Bitbucket Pull Request File Review扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Bitbucket Pull Request File Review Bitbucket Pull Request File Review
ID bllckhlhnfngflclpdalooiehmijjbaf
官方URL https://chromewebstore.google.com/detail/bitbucket-pull-request-fi/bllckhlhnfngflclpdalooiehmijjbaf
简介 Mark individual files as reviewed in Bitbucket Pull Requests
文件大小 6.92 KB
安装次数 50
当前版本 1.3
更新时间 2020-12-09
上架时间 2020-11-24
评分 5.00/5 共1次评分
开发者 vandenberghe.jeroen
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/JeroenVdb/bitbucket-pullrequest-file-review
支持的语言 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
    }
}