Jira Copy Issue Title

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

Wat is Jira Copy Issue Title?

Jira Copy Issue Title is een Chrome-extensie ontwikkeld door pazitiv, en de belangrijkste functie is "Adds a 'Copy Issue Title' button to 'Browse' and 'Issues' Jira pages".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Jira Copy Issue Title

Download Jira Copy Issue Title-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

                        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;                    

Basisinformatie over de Extensie

Naam Jira Copy Issue Title Jira Copy Issue Title
ID ncdfoejkjklpifhcapldmhgfflippaeg
Officiële URL https://chromewebstore.google.com/detail/jira-copy-issue-title/ncdfoejkjklpifhcapldmhgfflippaeg
Beschrijving Adds a 'Copy Issue Title' button to 'Browse' and 'Issues' Jira pages
Bestandsgrootte 9.39 KB
Aantal Installaties 305
Huidige Versie 0.2.5
Laatst Bijgewerkt 2023-10-18
Publicatiedatum 2022-06-14
Beoordeling 5.00/5 Totaal 2 Beoordelingen
Ontwikkelaar pazitiv
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
            ]
        }
    ]
}