Jira Task To Branch Name

Transform jira id + title to git branch name

Was ist Jira Task To Branch Name?

Jira Task To Branch Name ist eine Chrome-Erweiterung, die von unduine entwickelt wurde, und ihr Hauptmerkmal ist "Transform jira id + title to git branch name".

Erweiterungsscreenshots

screenshot

Jira Task To Branch Name-Erweiterungs-CRX-Datei herunterladen

Laden Sie Jira Task To Branch Name-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

                        If you faced with problem on your work with integration Jira to git - welcome! This extension will help you with it, you can copy your jira task name to git branch. 
For example - Task with Id - "TASK-11" and name "remove-button-from-home-page" will transform to string "TASK-11-remove-button-from-home-page"
Hope it will help someone :)                    

Grundlegende Informationen zur Erweiterung

Name Jira Task To Branch Name Jira Task To Branch Name
ID bjblobcihloahnigngcmplnjjkmjlgkf
Offizielle URL https://chromewebstore.google.com/detail/jira-task-to-branch-name/bjblobcihloahnigngcmplnjjkmjlgkf
Beschreibung Transform jira id + title to git branch name
Dateigröße 41.56 KB
Installationsanzahl 33
Aktuelle Version 1.0
Letztes Update 2021-08-31
Veröffentlichungsdatum 2021-08-30
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler unduine
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Jira Task To Branch Name",
    "version": "1.0",
    "author": "Maxim Topalov",
    "description": "Transform jira id + title to git branch name",
    "manifest_version": 2,
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "index.html",
        "default_title": "Jira Task To Branch Name"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "permissions": [
        "clipboardWrite",
        "https:\/\/*.atlassian.net\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.atlassian.net\/*"
            ],
            "js": [
                "lodash.min.js",
                "index.js"
            ]
        }
    ]
}