JIRA Issue Branch Name Generator

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

Co to jest JIRA Issue Branch Name Generator?

JIRA Issue Branch Name Generator to rozszerzenie Chrome opracowane przez https://thinkotsan.com, a jego główną funkcją jest „Generates a branch name based on the current JIRA issue view.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia JIRA Issue Branch Name Generator

Pobierz pliki rozszerzeń JIRA Issue Branch Name Generator w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa JIRA Issue Branch Name Generator JIRA Issue Branch Name Generator
ID apgennglojmcjggiideonbmhnadicglo
Oficjalny URL https://chromewebstore.google.com/detail/jira-issue-branch-name-ge/apgennglojmcjggiideonbmhnadicglo
Opis Generates a branch name based on the current JIRA issue view.
Rozmiar pliku 13.45 KB
Liczba instalacji 16
Aktualna Wersja 3
Ostatnia Aktualizacja 2021-04-26
Data Publikacji 2019-04-30
Deweloper https://thinkotsan.com
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
    ]
}