Copy JIRA ID
Copies JIRA ID.
What is Copy JIRA ID?
Copy JIRA ID is a Chrome extension developed by https://adesh.dev, and its main feature is "Copies JIRA ID.".
Extension Screenshots
Download Copy JIRA ID Extension CRX File
Download Copy JIRA ID extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Copy JIRA ID |
ID | fiokagkoilhjielhjemghmnddbjbplln |
Official URL | https://chromewebstore.google.com/detail/copy-jira-id/fiokagkoilhjielhjemghmnddbjbplln |
Description | Copies JIRA ID. |
File Size | 9 KB |
Installation Count | 65 |
Current Version | 0.1.6 |
Last Updated | 2021-11-16 |
Publish Date | 2020-05-19 |
Rating | 3.75/5 Total 4 Ratings |
Developer | https://adesh.dev |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/AdeshAtole/copy-jira-id |
Help Page URL | https://github.com/AdeshAtole/copy-jira-id |
Supported Languages | 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" } } |