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
官方網址 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"
    }
}