Jira Snippet
Enhance your Jira experience with the Jira Snippet browser extension
Jira Snippet là gì?
Jira Snippet là một tiện ích mở rộng Chrome được phát triển bởi daemonlibra, và tính năng chính của nó là "Enhance your Jira experience with the Jira Snippet browser extension".
Ả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 Jira Snippet
Tải xuống các tệp mở rộng Jira Snippet 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
Makes it possible to copy the jira issue id + title with one button Jira Snippet is a browser extension that streamlines your Jira experience by allowing you to quickly copy issue information in a customizable format. It's easy to configure and enables you to choose what data you want to include when copying, such as issue title, ID, status, and more. The add-on integrates seamlessly with Jira Cloud and is compatible with Chrome, Firefox, Edge and Opera browsers.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Jira Snippet |
ID | ncdfcjgiincicfifodndidbdembfhpag |
URL Chính Thức | https://chromewebstore.google.com/detail/jira-snippet/ncdfcjgiincicfifodndidbdembfhpag |
Mô tả | Enhance your Jira experience with the Jira Snippet browser extension |
Kích Thước Tệp | 33.56 KB |
Số Lần Cài Đặt | 591 |
Phiên Bản Hiện Tại | 2.1 |
Cập Nhật Lần Cuối | 2023-08-18 |
Ngày Phát Hành | 2022-01-31 |
Đánh Giá | 4.40/5 Tổng số 5 Đánh Giá |
Nhà Phát Triển | daemonlibra |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/daemonLibra/JiraIssueCopyData |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Jira Snippet", "version": "2.1", "description": "Enhance your Jira experience with the Jira Snippet browser extension", "homepage_url": "https:\/\/github.com\/daemonLibra\/JiraIssueCopyData", "author": "https:\/\/github.com\/daemonLibra", "icons": { "48": "icons\/logo_48.png" }, "action": { "default_icon": "icons\/logo_32.png", "default_title": "Jira Snippet", "default_popup": "popup\/info.html" }, "background": { "service_worker": "scripts\/contextMenu.js" }, "content_scripts": [ { "matches": [ "*:\/\/*.atlassian.net\/*", "*:\/\/*.atlassian.com\/*" ], "js": [ "scripts\/storage-utils.js", "scripts\/settings.js", "scripts\/copybtn.js" ], "run_at": "document_start", "css": [ "css\/style.css" ] } ], "permissions": [ "storage", "contextMenus" ] } |