Jira Task To Branch Name

Transform jira id + title to git branch name

What is Jira Task To Branch Name?

Jira Task To Branch Name is a Chrome extension developed by unduine, and its main feature is "Transform jira id + title to git branch name".

Extension Screenshots

screenshot

Download Jira Task To Branch Name Extension CRX File

Download Jira Task To Branch Name extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Jira Task To Branch Name Jira Task To Branch Name
ID bjblobcihloahnigngcmplnjjkmjlgkf
Official URL https://chromewebstore.google.com/detail/jira-task-to-branch-name/bjblobcihloahnigngcmplnjjkmjlgkf
Description Transform jira id + title to git branch name
File Size 41.56 KB
Installation Count 33
Current Version 1.0
Last Updated 2021-08-31
Publish Date 2021-08-30
Rating 5.00/5 Total 1 Ratings
Developer unduine
Email [email protected]
Payment Type free
Supported Languages 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"
            ]
        }
    ]
}