Bitbucket Pull Request auto delete branch
Automatically checks the checkbox to delete the current branch after the pull request is merged on Bitbucket Cloud.
Cos'è Bitbucket Pull Request auto delete branch?
Bitbucket Pull Request auto delete branch è un'estensione di Chrome sviluppata da hmartos, e la sua funzione principale è "Automatically checks the checkbox to delete the current branch after the pull request is merged on Bitbucket Cloud.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Bitbucket Pull Request auto delete branch
Scarica i file di estensione Bitbucket Pull Request auto delete branch in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Bitbucket Pull Request auto delete branch |
ID | iffllgmebelmfdfiiagjgbpjhplobfem |
URL Ufficiale | https://chromewebstore.google.com/detail/bitbucket-pull-request-au/iffllgmebelmfdfiiagjgbpjhplobfem |
Descrizione | Automatically checks the checkbox to delete the current branch after the pull request is merged on Bitbucket Cloud. |
Dimensione del File | 12.89 KB |
Conteggio Installazioni | 440 |
Versione Corrente | 1.0.0 |
Ultimo Aggiornamento | 2023-01-31 |
Data di Pubblicazione | 2023-01-31 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | hmartos |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/hmartos/bitbucket-pull-request-auto-delete-branch |
URL della Pagina di Aiuto | https://github.com/hmartos/bitbucket-pull-request-auto-delete-branch/issues |
Lingue Supportate | 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" } } |