Copy JIRA ID
Copies JIRA ID.
Copy JIRA ID là gì?
Copy JIRA ID là một tiện ích mở rộng Chrome được phát triển bởi https://adesh.dev, và tính năng chính của nó là "Copies JIRA ID.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Copy JIRA ID
Tải xuống các tệp mở rộng Copy JIRA ID dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Copy JIRA ID |
ID | fiokagkoilhjielhjemghmnddbjbplln |
URL Chính Thức | https://chromewebstore.google.com/detail/copy-jira-id/fiokagkoilhjielhjemghmnddbjbplln |
Mô tả | Copies JIRA ID. |
Kích Thước Tệp | 9 KB |
Số Lần Cài Đặt | 65 |
Phiên Bản Hiện Tại | 0.1.6 |
Cập Nhật Lần Cuối | 2021-11-16 |
Ngày Phát Hành | 2020-05-19 |
Đánh Giá | 3.75/5 Tổng số 4 Đánh Giá |
Nhà Phát Triển | https://adesh.dev |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/AdeshAtole/copy-jira-id |
URL Trang Trợ Giúp | https://github.com/AdeshAtole/copy-jira-id |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |