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