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."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Jira Status Colours 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
            ]
        }
    ]
}