Jira Copy Issue Title
Adds a 'Copy Issue Title' button to 'Browse' and 'Issues' Jira pages
Apa itu Jira Copy Issue Title?
Jira Copy Issue Title adalah ekstensi Chrome yang dikembangkan oleh pazitiv, dan fitur utamanya adalah "Adds a 'Copy Issue Title' button to 'Browse' and 'Issues' Jira pages".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Jira Copy Issue Title
Unduh file ekstensi Jira Copy Issue Title dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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;
Informasi Dasar Ekstensi
Nama | Jira Copy Issue Title |
ID | ncdfoejkjklpifhcapldmhgfflippaeg |
URL Resmi | https://chromewebstore.google.com/detail/jira-copy-issue-title/ncdfoejkjklpifhcapldmhgfflippaeg |
Deskripsi | Adds a 'Copy Issue Title' button to 'Browse' and 'Issues' Jira pages |
Ukuran File | 9.39 KB |
Jumlah Instalasi | 305 |
Versi Saat Ini | 0.2.5 |
Terakhir Diperbarui | 2023-10-18 |
Tanggal Publikasi | 2022-06-14 |
Penilaian | 5.00/5 Total 2 Penilaian |
Pengembang | pazitiv |
[email protected] | |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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" ] } ] } |