Jira Ticket Link Generator - Cloud Edition

Generates a nice looking link for Jira tickets containing ticket ID, description and link

Hvad er Jira Ticket Link Generator - Cloud Edition?

Jira Ticket Link Generator - Cloud Edition er en Chrome-udvidelse udviklet af Junhao Zhang, og dens hovedfunktion er "Generates a nice looking link for Jira tickets containing ticket ID, description and link".

Udvidelsesskærmbilleder

screenshot
screenshot

Download Jira Ticket Link Generator - Cloud Edition-udvidelses-CRX-fil

Download Jira Ticket Link Generator - Cloud Edition-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        Now here comes the cloud edition of our Jira Ticket Link Generator, works if the Jira instance is on Atlassian Cloud. (If Jira is hosted on-premise instead, try searching for "Jira Ticket Link Generator")

This plugin is used for generating a hyperlink for a selected Jira ticket including ticket ID and ticket description, the generated link is copied to clipboard for using.

Link can be generated from a selected ticket on sprint board, a ticket detail page, or a selected ticket on search result board. Also we provide another option to generate a list of links for all tickets shown up in search result board.

No configuration needed, just plug and play, and enjoy!                    

Grundlæggende oplysninger om udvidelsen

Navn Jira Ticket Link Generator - Cloud Edition Jira Ticket Link Generator - Cloud Edition
ID nkoibfljacmncjmdglnollibfmibbfbb
Officiel URL https://chromewebstore.google.com/detail/jira-ticket-link-generato/nkoibfljacmncjmdglnollibfmibbfbb
Beskrivelse Generates a nice looking link for Jira tickets containing ticket ID, description and link
Filstørrelse 538 KB
Antal Installationer 28
Nuværende Version 1.0.5
Senest Opdateret 2023-12-16
Udgivelsesdato 2022-05-03
Bedømmelse 3.75/5 Samlet 4 Bedømmelser
Udvikler Junhao Zhang
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Jira Ticket Link Generator - Cloud Edition",
    "description": "Generates a nice looking link for Jira tickets containing ticket ID, description and link",
    "version": "1.0.5",
    "manifest_version": 3,
    "author": "Junhao Zhang",
    "permissions": [
        "scripting",
        "activeTab",
        "clipboardWrite"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": "\/images\/link_to_jira_48.png"
    },
    "commands": {
        "generate-link-for-single-ticket": {
            "suggested_key": {
                "default": "Alt+X",
                "mac": "Alt+X"
            },
            "description": "Generate link for selected ticket on sprint board, selected ticket on search board, or ticket shown in ticket detail page."
        },
        "generate-link-for-all-tickets": {
            "suggested_key": {
                "default": "Alt+Z",
                "mac": "Alt+Z"
            },
            "description": "Generate link for all tickets listed in search result board."
        }
    },
    "icons": {
        "16": "\/images\/link_to_jira_16.png",
        "32": "\/images\/link_to_jira_32.png",
        "48": "\/images\/link_to_jira_48.png",
        "128": "\/images\/link_to_jira_128.png"
    }
}