Jira Status Colours

Customize the colours of your Jira statuses.

Cos'è Jira Status Colours?

Jira Status Colours è un'estensione di Chrome sviluppata da https://clydedsouza.net, e la sua funzione principale è "Customize the colours of your Jira statuses.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Jira Status Colours

Scarica i file di estensione Jira Status Colours in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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!                    

Informazioni di Base sull'Estensione

Nome Jira Status Colours Jira Status Colours
ID nglechghbeioejgliejidjlhbfiiinne
URL Ufficiale https://chromewebstore.google.com/detail/jira-status-colours/nglechghbeioejgliejidjlhbfiiinne
Descrizione Customize the colours of your Jira statuses.
Dimensione del File 18.97 KB
Conteggio Installazioni 44
Versione Corrente 1.0.0
Ultimo Aggiornamento 2022-05-12
Data di Pubblicazione 2021-12-08
Valutazione 3.50/5 Totale 2 Valutazioni
Sviluppatore https://clydedsouza.net
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/ClydeDz/jira-status-colours-chrome-extension
URL della Pagina di Aiuto https://github.com/ClydeDz/jira-status-colours-chrome-extension/issues/new/choose
Lingue Supportate 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"
            ]
        }
    ]
}