Jira Task To Branch Name

Transform jira id + title to git branch name

Wat is Jira Task To Branch Name?

Jira Task To Branch Name is een Chrome-extensie ontwikkeld door unduine, en de belangrijkste functie is "Transform jira id + title to git branch name".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Jira Task To Branch Name

Download Jira Task To Branch Name-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam Jira Task To Branch Name Jira Task To Branch Name
ID bjblobcihloahnigngcmplnjjkmjlgkf
Officiële URL https://chromewebstore.google.com/detail/jira-task-to-branch-name/bjblobcihloahnigngcmplnjjkmjlgkf
Beschrijving Transform jira id + title to git branch name
Bestandsgrootte 41.56 KB
Aantal Installaties 33
Huidige Versie 1.0
Laatst Bijgewerkt 2021-08-31
Publicatiedatum 2021-08-30
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar unduine
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
            ]
        }
    ]
}