Copy JIRA ID

Copies JIRA ID.

Qu'est-ce que Copy JIRA ID ?

Copy JIRA ID est une extension Chrome développée par https://adesh.dev, et sa fonction principale est "Copies JIRA ID.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Copy JIRA ID

Téléchargez les fichiers d'extension Copy JIRA ID au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        TL;DR This extension adds a 'Copy JIRA ID' button (to copy the JIRA ID of course XD)

Atlassian JIRA does not have an easy way to copy the JIRA ID. It was easier in old UX, but with the new UX, a lot of garbage is copied as well. They have a copy link button, but that wasn't really useful for me. I wrote this extension out of frustration, which adds a standalone button next to the JIRA ID, to save you from the hassle. Feel free to give it a try.

I try my best to keep it updated to latest and also support old versions of JIRA. In case it does not work for you create an issue at https://github.com/AdeshAtole/copy-jira-id/issues/new OR drop a mail                    

Informations de Base sur l'Extension

Nom Copy JIRA ID Copy JIRA ID
ID fiokagkoilhjielhjemghmnddbjbplln
URL Officiel https://chromewebstore.google.com/detail/copy-jira-id/fiokagkoilhjielhjemghmnddbjbplln
Description Copies JIRA ID.
Taille du Fichier 9 KB
Nombre d'Installations 65
Version Actuelle 0.1.6
Dernière Mise à Jour 2021-11-16
Date de Publication 2020-05-19
Évaluation 3.75/5 Total 4 Évaluations
Développeur https://adesh.dev
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/AdeshAtole/copy-jira-id
URL de la Page d'Aide https://github.com/AdeshAtole/copy-jira-id
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Copy JIRA ID",
    "version": "0.1.6",
    "description": "Copies JIRA ID.",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.atlassian.net\/browse\/*",
                "https:\/\/*.atlassian.net\/browse\/*",
                "https:\/\/*.jira.com\/browse\/*"
            ],
            "js": [
                "contentScript.js"
            ],
            "css": [
                "styles.css"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "128": "icon_128.png"
    }
}