Jira Enricher
This extension fixes some of the flaws of Jira's kanban boards and service desk queues!
Jira Enricher là gì?
Jira Enricher là một tiện ích mở rộng Chrome được phát triển bởi SMExDigital, và tính năng chính của nó là "This extension fixes some of the flaws of Jira's kanban boards and service desk queues!".
Ả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 Enricher
Tải xuống các tệp mở rộng Jira Enricher 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
This extension fixes some of the flaws of Jira's Service desk and kanban boards by showing more detail on mouseover for flags, sub-tasks, and changing the whole card colour (not just the bar down the side!), and grouping service desk queues. More to come, please leave a comment :)
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Jira Enricher |
ID | jlihclacpdikdmpcajoippnebilifkfm |
URL Chính Thức | https://chromewebstore.google.com/detail/jira-enricher/jlihclacpdikdmpcajoippnebilifkfm |
Mô tả | This extension fixes some of the flaws of Jira's kanban boards and service desk queues! |
Kích Thước Tệp | 69.05 KB |
Số Lần Cài Đặt | 52 |
Phiên Bản Hiện Tại | 1.0.11 |
Cập Nhật Lần Cuối | 2020-04-02 |
Ngày Phát Hành | 2020-04-02 |
Nhà Phát Triển | SMExDigital |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | http://www.smexdigital.com |
Ngôn Ngữ Được Hỗ Trợ | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Jira Enricher", "version": "1.0.11", "author": "Mike Burns", "homepage_url": "http:\/\/www.smexdigital.com", "default_locale": "en_GB", "description": "This extension fixes some of the flaws of Jira's kanban boards and service desk queues!", "minimum_chrome_version": "78.0.3904.108", "permissions": [ "activeTab", "storage", "contextMenus" ], "content_scripts": [ { "run_at": "document_idle", "matches": [ "*:\/\/*.atlassian.net\/*" ], "css": [ "style\/extension.css" ], "js": [ "options\/defaultOptions.js", "scripts\/utils.js", "scripts\/content\/enrichIssue.js", "scripts\/content\/enrichServiceDesk.js", "scripts\/content\/enrichContextMenu.js" ] } ], "options_ui": { "page": "options\/options.html", "open_in_tab": true }, "page_action": { "default_icon": { "16": "images\/icon16.png", "48": "images\/icon48.png", "64": "images\/icon64.png", "128": "images\/icon128.png" }, "default_title": "Enriches the Jira Software and Jira Service Desk with a more useful user experience." }, "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "64": "images\/icon64.png", "128": "images\/icon128.png" }, "background": { "scripts": [ "options\/defaultOptions.js", "scripts\/background\/onRefreshPage.js", "scripts\/background\/onShowIcon.js", "scripts\/background\/onContextMenus.js", "scripts\/background\/onExpandedQueues.js" ], "persistent": false } } |