JIRA Issue Branch Name Generator

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

Cos'è JIRA Issue Branch Name Generator?

JIRA Issue Branch Name Generator è un'estensione di Chrome sviluppata da https://thinkotsan.com, e la sua funzione principale è "Generates a branch name based on the current JIRA issue view.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione JIRA Issue Branch Name Generator

Scarica i file di estensione JIRA Issue Branch Name Generator in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome JIRA Issue Branch Name Generator JIRA Issue Branch Name Generator
ID apgennglojmcjggiideonbmhnadicglo
URL Ufficiale https://chromewebstore.google.com/detail/jira-issue-branch-name-ge/apgennglojmcjggiideonbmhnadicglo
Descrizione Generates a branch name based on the current JIRA issue view.
Dimensione del File 13.45 KB
Conteggio Installazioni 16
Versione Corrente 3
Ultimo Aggiornamento 2021-04-26
Data di Pubblicazione 2019-04-30
Sviluppatore https://thinkotsan.com
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}