JIRA Issue Branch Name Generator

Generates a branch name based on the current JIRA issue view.

What is JIRA Issue Branch Name Generator?

JIRA Issue Branch Name Generator is a Chrome extension developed by https://thinkotsan.com, and its main feature is "Generates a branch name based on the current JIRA issue view.".

Extension Screenshots

screenshot

Download JIRA Issue Branch Name Generator Extension CRX File

Download JIRA Issue Branch Name Generator 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

                        This chrome extension generates a branch name from a JIRA issue view and copies it to clipboard to be used as a name for your version control branches.                    

Extension Basic Information

Name JIRA Issue Branch Name Generator JIRA Issue Branch Name Generator
ID apgennglojmcjggiideonbmhnadicglo
Official URL https://chromewebstore.google.com/detail/jira-issue-branch-name-ge/apgennglojmcjggiideonbmhnadicglo
Description Generates a branch name based on the current JIRA issue view.
File Size 13.45 KB
Installation Count 16
Current Version 3
Last Updated 2021-04-26
Publish Date 2019-04-30
Developer https://thinkotsan.com
Email [email protected]
Payment Type free
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "JIRA Issue Branch Name Generator",
    "version": "3",
    "description": "Generates a branch name based on the current JIRA issue view.",
    "icons": {
        "128": "128.png",
        "64": "64.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.atlassian.net\/*\/projects\/*\/issues\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "page_action": {
        "default_icon": "128.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "activeTab",
        "clipboardWrite",
        "declarativeContent"
    ]
}