JIRA Issue Branch Name Generator

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

Co je JIRA Issue Branch Name Generator?

JIRA Issue Branch Name Generator je rozšíření Chrome vyvinuté https://thinkotsan.com, a jeho hlavní funkcí je „Generates a branch name based on the current JIRA issue view.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření JIRA Issue Branch Name Generator

Stáhněte si soubory rozšíření JIRA Issue Branch Name Generator ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název JIRA Issue Branch Name Generator JIRA Issue Branch Name Generator
ID apgennglojmcjggiideonbmhnadicglo
Oficiální URL https://chromewebstore.google.com/detail/jira-issue-branch-name-ge/apgennglojmcjggiideonbmhnadicglo
Popis Generates a branch name based on the current JIRA issue view.
Velikost souboru 13.45 KB
Počet instalací 16
Aktuální Verze 3
Poslední Aktualizace 2021-04-26
Datum Vydání 2019-04-30
Vývojář https://thinkotsan.com
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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"
    ]
}