Jira Task To Branch Name

Transform jira id + title to git branch name

Cos'è Jira Task To Branch Name?

Jira Task To Branch Name è un'estensione di Chrome sviluppata da unduine, e la sua funzione principale è "Transform jira id + title to git branch name".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Jira Task To Branch Name

Scarica i file di estensione Jira Task To Branch Name 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

                        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 :)                    

Informazioni di Base sull'Estensione

Nome Jira Task To Branch Name Jira Task To Branch Name
ID bjblobcihloahnigngcmplnjjkmjlgkf
URL Ufficiale https://chromewebstore.google.com/detail/jira-task-to-branch-name/bjblobcihloahnigngcmplnjjkmjlgkf
Descrizione Transform jira id + title to git branch name
Dimensione del File 41.56 KB
Conteggio Installazioni 33
Versione Corrente 1.0
Ultimo Aggiornamento 2021-08-31
Data di Pubblicazione 2021-08-30
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore unduine
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
            ]
        }
    ]
}