Branch Name Generator

Branch Name Generator

Was ist Branch Name Generator?

Branch Name Generator ist eine Chrome-Erweiterung, die von klajdipaja entwickelt wurde, und ihr Hauptmerkmal ist "Branch Name Generator".

Erweiterungsscreenshots

screenshot

Branch Name Generator-Erweiterungs-CRX-Datei herunterladen

Laden Sie Branch Name Generator-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        A helper to that generates branche name for Atlassian or Azure DevOps ticket.
As a developer using the git-flow proccess you often need to create branches that have names deriving from the project code, ticket number and title. 
That is what this extension does, you can fill the form with that data or load all the data from the open Jira/Azure Devops ticket tab using web scrapping, and when you click Generate Branch Name a branch name will be generated that you can copy and use it for your git-flow proccess.
Example:
Project Code: OGM
Ticket number: 1581
Title: Hibernate-OGM Neo4j uses an outdated Bolt driver for remote connections.
Generated Branch Name: feature/OGM-1581_HibernateOGM_Neo4j_uses_an_outdated_Bolt_driver_for_remote_connections                    

Grundlegende Informationen zur Erweiterung

Name Branch Name Generator Branch Name Generator
ID ponaigcolfgmjneppjpenfobcnkecmao
Offizielle URL https://chromewebstore.google.com/detail/branch-name-generator/ponaigcolfgmjneppjpenfobcnkecmao
Beschreibung Branch Name Generator
Dateigröße 925 KB
Installationsanzahl 24
Aktuelle Version 1.0
Letztes Update 2021-10-12
Veröffentlichungsdatum 2021-10-12
Entwickler klajdipaja
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Branch Name Generator",
    "description": "Branch Name Generator",
    "version": "1.0",
    "manifest_version": 3,
    "action": {
        "default_popup": "index.html",
        "default_title": "Open"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                ".\/static\/js\/content.js"
            ]
        }
    ],
    "permissions": [
        "activeTab"
    ],
    "icons": {
        "16": "logo16.png",
        "48": "logo48.png",
        "128": "logo128.png",
        "512": "logo512.png"
    }
}