Bitbucket Pull Request auto delete branch

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

¿Qué es Bitbucket Pull Request auto delete branch?

Bitbucket Pull Request auto delete branch es una extensión de Chrome desarrollada por hmartos, y su función principal es "Automatically checks the checkbox to delete the current branch after the pull request is merged on Bitbucket Cloud.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Bitbucket Pull Request auto delete branch

Descarga archivos de extensión Bitbucket Pull Request auto delete branch en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre 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
Descripción Automatically checks the checkbox to delete the current branch after the pull request is merged on Bitbucket Cloud.
Tamaño del Archivo 12.89 KB
Cantidad de Instalaciones 440
Versión Actual 1.0.0
Última Actualización 2023-01-31
Fecha de Publicación 2023-01-31
Calificación 5.00/5 Total de 2 Calificaciones
Desarrollador hmartos
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/hmartos/bitbucket-pull-request-auto-delete-branch
URL de la Página de Ayuda https://github.com/hmartos/bitbucket-pull-request-auto-delete-branch/issues
Idiomas Soportados 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"
    }
}