Jira descriptive link

Easily copy an issue's name & key. Paste as a link into Slack, Teams, email... Easy to find later. Not an official Jira extension.

Was ist Jira descriptive link?

Jira descriptive link ist eine Chrome-Erweiterung, die von floodmeadows entwickelt wurde, und ihr Hauptmerkmal ist "Easily copy an issue's name & key. Paste as a link into Slack, Teams, email... Easy to find later. Not an official Jira extension.".

Erweiterungsscreenshots

screenshot

Jira descriptive link-Erweiterungs-CRX-Datei herunterladen

Laden Sie Jira descriptive link-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        For Jira Server (self-hosted, not Jira Cloud). Adds a button to the issue (story) details view to copy a link to that issue. Ideal for pasting into Slack, Teams, or email etc.
The link includes the issue name (summary) and key, so you can see at a glance which issue it is. Also means that you can easily search through your messages by issue key to find all references to that issue, even if the issue name has changed since the link was pasted.
Works with Jira, but is not made, endorsed, or supported by Jira or Atlassian.                    

Grundlegende Informationen zur Erweiterung

Name Jira descriptive link Jira descriptive link
ID bfnkoiobloacajlibohhniedpcjibnmm
Offizielle URL https://chromewebstore.google.com/detail/jira-descriptive-link/bfnkoiobloacajlibohhniedpcjibnmm
Beschreibung Easily copy an issue's name & key. Paste as a link into Slack, Teams, email... Easy to find later. Not an official Jira extension.
Dateigröße 40.01 KB
Installationsanzahl 87
Aktuelle Version 0.2
Letztes Update 2023-07-14
Veröffentlichungsdatum 2023-01-15
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler floodmeadows
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/floodmeadows/jira-descriptive-link-chrome-extension
Hilfeseite URL https://github.com/floodmeadows/jira-descriptive-link-chrome-extension/issues
URL der Datenschutzrichtlinien-Seite https://github.com/floodmeadows/browser-extensions/wiki/Privacy-Policy
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Jira descriptive link",
    "description": "Easily copy an issue's name & key. Paste as a link into Slack, Teams, email... Easy to find later. Not an official Jira extension.",
    "version": "0.2",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/browse\/*"
            ],
            "js": [
                "jira-descriptive-link.user.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "converted_from_user_script": true
}