Bitbucket Pull Request auto delete branch

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

O que é Bitbucket Pull Request auto delete branch?

Bitbucket Pull Request auto delete branch é uma extensão do Chrome desenvolvida por hmartos, e sua principal característica é "Automatically checks the checkbox to delete the current branch after the pull request is merged on Bitbucket Cloud.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Bitbucket Pull Request auto delete branch

Baixe arquivos de extensão Bitbucket Pull Request auto delete branch no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Bitbucket Pull Request auto delete branch Bitbucket Pull Request auto delete branch
ID iffllgmebelmfdfiiagjgbpjhplobfem
URL Oficial https://chromewebstore.google.com/detail/bitbucket-pull-request-au/iffllgmebelmfdfiiagjgbpjhplobfem
Descrição Automatically checks the checkbox to delete the current branch after the pull request is merged on Bitbucket Cloud.
Tamanho do Arquivo 12.89 KB
Contagem de Instalações 440
Versão Atual 1.0.0
Última Atualização 2023-01-31
Data de Publicação 2023-01-31
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor hmartos
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/hmartos/bitbucket-pull-request-auto-delete-branch
URL da Página de Ajuda https://github.com/hmartos/bitbucket-pull-request-auto-delete-branch/issues
Idiomas Suportados 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"
    }
}