Jira Copy Issue Title
Adds a 'Copy Issue Title' button to 'Browse' and 'Issues' Jira pages
What is Jira Copy Issue Title?
Jira Copy Issue Title is a Chrome extension developed by pazitiv, and its main feature is "Adds a 'Copy Issue Title' button to 'Browse' and 'Issues' Jira pages".
Extension Screenshots
Download Jira Copy Issue Title Extension CRX File
Download Jira Copy Issue Title 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
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;
Extension Basic Information
Name | Jira Copy Issue Title |
ID | ncdfoejkjklpifhcapldmhgfflippaeg |
Official URL | https://chromewebstore.google.com/detail/jira-copy-issue-title/ncdfoejkjklpifhcapldmhgfflippaeg |
Description | Adds a 'Copy Issue Title' button to 'Browse' and 'Issues' Jira pages |
File Size | 9.39 KB |
Installation Count | 305 |
Current Version | 0.2.5 |
Last Updated | 2023-10-18 |
Publish Date | 2022-06-14 |
Rating | 5.00/5 Total 2 Ratings |
Developer | pazitiv |
[email protected] | |
Payment Type | free |
Supported Languages | 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" ] } ] } |