JIRA Issue Branch Name Generator

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

Wat is JIRA Issue Branch Name Generator?

JIRA Issue Branch Name Generator is een Chrome-extensie ontwikkeld door https://thinkotsan.com, en de belangrijkste functie is "Generates a branch name based on the current JIRA issue view.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie JIRA Issue Branch Name Generator

Download JIRA Issue Branch Name Generator-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam JIRA Issue Branch Name Generator JIRA Issue Branch Name Generator
ID apgennglojmcjggiideonbmhnadicglo
Officiële URL https://chromewebstore.google.com/detail/jira-issue-branch-name-ge/apgennglojmcjggiideonbmhnadicglo
Beschrijving Generates a branch name based on the current JIRA issue view.
Bestandsgrootte 13.45 KB
Aantal Installaties 16
Huidige Versie 3
Laatst Bijgewerkt 2021-04-26
Publicatiedatum 2019-04-30
Ontwikkelaar https://thinkotsan.com
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
    ]
}