Jira Copy Issue Title

Adds a 'Copy Issue Title' button to 'Browse' and 'Issues' Jira pages

Cos'è Jira Copy Issue Title?

Jira Copy Issue Title è un'estensione di Chrome sviluppata da pazitiv, e la sua funzione principale è "Adds a 'Copy Issue Title' button to 'Browse' and 'Issues' Jira pages".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Jira Copy Issue Title

Scarica i file di estensione Jira Copy Issue Title 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

                        Improve user experience in Jira and allow:
- Copy issue Title, Key-ID, URL to clipboard;
- Customize copy template (e.g. markdown compatible);
- Customize button name;
- Customize keyboard shortcut;
- Get native Jira notifications;                    

Informazioni di Base sull'Estensione

Nome Jira Copy Issue Title Jira Copy Issue Title
ID ncdfoejkjklpifhcapldmhgfflippaeg
URL Ufficiale https://chromewebstore.google.com/detail/jira-copy-issue-title/ncdfoejkjklpifhcapldmhgfflippaeg
Descrizione Adds a 'Copy Issue Title' button to 'Browse' and 'Issues' Jira pages
Dimensione del File 9.39 KB
Conteggio Installazioni 305
Versione Corrente 0.2.5
Ultimo Aggiornamento 2023-10-18
Data di Pubblicazione 2022-06-14
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore pazitiv
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Jira Copy Issue Title",
    "description": "Adds a 'Copy Issue Title' button to 'Browse' and 'Issues' Jira pages",
    "version": "0.2.5",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "commands": {
        "copy-to-clipboard": {
            "description": "Copy to clipboard"
        }
    },
    "action": [],
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "jira-notifications.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "options_page": "\/pages\/options\/index.html",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jira-copy-issue-title.js"
            ]
        }
    ]
}