Jira Status Colours

Customize the colours of your Jira statuses.

Jira Status Coloursคืออะไร?

Jira Status Colours เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://clydedsouza.net และคุณลักษณะหลักของมันคือ "Customize the colours of your Jira statuses."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Jira Status Colours

ดาวน์โหลดไฟล์ส่วนขยาย 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 Jira Status Colours
ID nglechghbeioejgliejidjlhbfiiinne
URL อย่างเป็นทางการ 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"
            ]
        }
    ]
}