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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον hmartos, και η κύρια λειτουργία του είναι "Automatically checks the checkbox to delete the current branch after the pull request is merged on Bitbucket Cloud.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Bitbucket Pull Request auto delete branch
Λήψη αρχείων επέκτασης 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 |
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 |
Ηλεκτρονικό ταχυδρομείο | [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" } } |