Jira Enricher
This extension fixes some of the flaws of Jira's kanban boards and service desk queues!
什麼是Jira Enricher?
Jira Enricher是由SMExDigital開發的Chrome擴展程式,該擴展的主要功能是“This extension fixes some of the flaws of Jira's kanban boards and service desk queues!”。
擴展截圖
下載Jira Enricher擴展crx文件
下載Jira Enricher擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 :)
擴展基本資訊
名稱 | Jira Enricher |
ID | jlihclacpdikdmpcajoippnebilifkfm |
官方網址 | https://chromewebstore.google.com/detail/jira-enricher/jlihclacpdikdmpcajoippnebilifkfm |
簡介 | This extension fixes some of the flaws of Jira's kanban boards and service desk queues! |
檔案大小 | 69.05 KB |
安裝次數 | 52 |
目前版本 | 1.0.11 |
更新時間 | 2020-04-02 |
上架時間 | 2020-04-02 |
開發者 | SMExDigital |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | http://www.smexdigital.com |
支援的語言 | 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 } } |