Copy JIRA ID
Copies JIRA ID.
Was ist Copy JIRA ID?
Copy JIRA ID ist eine Chrome-Erweiterung, die von https://adesh.dev entwickelt wurde, und ihr Hauptmerkmal ist "Copies JIRA ID.".
Erweiterungsscreenshots
Copy JIRA ID-Erweiterungs-CRX-Datei herunterladen
Laden Sie Copy JIRA ID-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
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
Grundlegende Informationen zur Erweiterung
Name | Copy JIRA ID |
ID | fiokagkoilhjielhjemghmnddbjbplln |
Offizielle URL | https://chromewebstore.google.com/detail/copy-jira-id/fiokagkoilhjielhjemghmnddbjbplln |
Beschreibung | Copies JIRA ID. |
Dateigröße | 9 KB |
Installationsanzahl | 65 |
Aktuelle Version | 0.1.6 |
Letztes Update | 2021-11-16 |
Veröffentlichungsdatum | 2020-05-19 |
Bewertung | 3.75/5 Insgesamt 4 Bewertungen |
Entwickler | https://adesh.dev |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/AdeshAtole/copy-jira-id |
Hilfeseite URL | https://github.com/AdeshAtole/copy-jira-id |
Unterstützte Sprachen | 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" } } |