Jira Status Colours
Customize the colours of your Jira statuses.
什麼是Jira Status Colours?
Jira Status Colours是由https://clydedsouza.net開發的Chrome擴展程式,該擴展的主要功能是“Customize the colours of your Jira statuses.”。
擴展截圖
下載Jira Status Colours擴展crx文件
下載Jira Status Colours擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Do you also find it hard to spot the statuses of your Jira tickets? Do you wish they were coloured so at a glance you could see how many stories are in progress, how many are in review and how many are done? Don't look any further because this Chrome Extension allows you to customize the colours of Jira statuses. Out of the box, it comes with a set of preset statuses and colours, but you can update this list as per your convenience. To head over to the configuration page, just click on the extension's icon in your browser and select options. Once you've configured the statuses and their colours to your hearts content, you can then head over to your Jira board and you should be able to see those colours. Note: This works for Jira Cloud only. Have a productive time ahead!
擴展基本資訊
名稱 | Jira Status Colours |
ID | nglechghbeioejgliejidjlhbfiiinne |
官方網址 | https://chromewebstore.google.com/detail/jira-status-colours/nglechghbeioejgliejidjlhbfiiinne |
簡介 | Customize the colours of your Jira statuses. |
檔案大小 | 18.97 KB |
安裝次數 | 44 |
目前版本 | 1.0.0 |
更新時間 | 2022-05-12 |
上架時間 | 2021-12-08 |
評分 | 3.50/5 共 2 次評分 |
開發者 | https://clydedsouza.net |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/ClydeDz/jira-status-colours-chrome-extension |
說明頁面URL | https://github.com/ClydeDz/jira-status-colours-chrome-extension/issues/new/choose |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Jira Status Colours", "description": "Customize the colours of your Jira statuses.", "version": "1.0.0", "author": "Clyde D'Souza", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "options_page": "options.html", "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "*:\/\/*.atlassian.net\/*" ], "js": [ "background.js" ] } ] } |