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
Eメール [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"
    }
}