Bitbucket Pull Request auto delete branch

Automatically checks the checkbox to delete the current branch after the pull request is merged on Bitbucket Cloud.

什么是Bitbucket Pull Request auto delete branch?

Bitbucket Pull Request auto delete branch是由hmartos开发的Chrome扩展程序,该扩展的主要功能是“Automatically checks the checkbox to delete the current branch after the pull request is merged on Bitbucket Cloud.”。

扩展截图

screenshot

下载Bitbucket Pull Request auto delete branch扩展crx文件

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

扩展使用说明

                        This extension automatically checks the checkbox to delete the source branch in a Bitbucket Pull Request after merging it into the destination branch.

Developers may forget to check this checkbox when creating a Pull Request, leaving the stale merged branches in the remote.

This functionality is available as a native configuration in Bitbucket Server, but it is not available in Bitbucket Cloud, so this extension solves that problem.                    

扩展基本信息

名称 Bitbucket Pull Request auto delete branch Bitbucket Pull Request auto delete branch
ID iffllgmebelmfdfiiagjgbpjhplobfem
官方URL https://chromewebstore.google.com/detail/bitbucket-pull-request-au/iffllgmebelmfdfiiagjgbpjhplobfem
简介 Automatically checks the checkbox to delete the current branch after the pull request is merged on Bitbucket Cloud.
文件大小 12.89 KB
安装次数 440
当前版本 1.0.0
更新时间 2023-01-31
上架时间 2023-01-31
评分 5.00/5 共2次评分
开发者 hmartos
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/hmartos/bitbucket-pull-request-auto-delete-branch
帮助页面URL https://github.com/hmartos/bitbucket-pull-request-auto-delete-branch/issues
支持的语言 en,es
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_extensionTitle__",
    "version": "1.0.0",
    "description": "__MSG_extensionDescription__",
    "default_locale": "en",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/bitbucket.org\/*\/pull-requests\/new*"
            ],
            "js": [
                "scripts\/content.js",
                "utils\/debug.js"
            ]
        }
    ],
    "icons": {
        "16": "images\/logo16.png",
        "32": "images\/logo32.png",
        "48": "images\/logo48.png",
        "128": "images\/logo128.png"
    }
}