Jira Favorites
Add Jira issues to favorites and sync among your devices.
Jira Favorites là gì?
Jira Favorites là một tiện ích mở rộng Chrome được phát triển bởi Git Cat, và tính năng chính của nó là "Add Jira issues to favorites and sync among your devices.".
Ả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 Favorites
Tải xuống các tệp mở rộng Jira Favorites 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
After installing this extension, there will be a star button in your Jira item page (see screenshots). Click the star button to favorite or unfavorite it. You can also use shortcut "Alt + Shift + f" to star/unstar. See the favorites list by clicking the star icon from browser's extension list.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Jira Favorites |
ID | ichkpfkanonmdnheglakiapmjmjhpmme |
URL Chính Thức | https://chromewebstore.google.com/detail/jira-favorites/ichkpfkanonmdnheglakiapmjmjhpmme |
Mô tả | Add Jira issues to favorites and sync among your devices. |
Kích Thước Tệp | 284 KB |
Số Lần Cài Đặt | 164 |
Phiên Bản Hiện Tại | 0.0.8 |
Cập Nhật Lần Cuối | 2024-02-26 |
Ngày Phát Hành | 2020-05-04 |
Nhà Phát Triển | Git Cat |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/TechStark/jira-favorites-extension |
URL Trang Trợ Giúp | https://github.com/TechStark/jira-favorites-extension/issues |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Jira Favorites", "version": "0.0.8", "manifest_version": 3, "description": "Add Jira issues to favorites and sync among your devices.", "icons": { "128": "icons\/icon-128.png", "48": "icons\/icon-48.png", "16": "icons\/icon-16.png" }, "action": { "default_icon": { "16": "icons\/icon-16.png", "32": "icons\/icon-32.png" } }, "background": { "service_worker": "background.bundle.js" }, "content_scripts": [ { "matches": [ "*:\/\/*\/browse\/*" ], "match_about_blank": true, "all_frames": true, "run_at": "document_idle", "js": [ "content-script.bundle.js" ] } ], "permissions": [ "storage" ] } |