Cards & Colors

Extension enhances visibility to issues and cards on Jira Agile boards based on colored edges and statuses

Τι είναι το Cards & Colors;

Το Cards & Colors είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον 3rdUnknown, και η κύρια λειτουργία του είναι "Extension enhances visibility to issues and cards on Jira Agile boards based on colored edges and statuses".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Cards & Colors

Λήψη αρχείων επέκτασης Cards & Colors σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Boost the visibility of issues on your cloud Jira agile boards by adding colors based on:
- colored edges for cards ("Board settings - Card colors" settings that added colored edges for cards based on selected method (JQL queries, etc)
- issue status (for example "Ready For QA", "Fixes Needed", "Blocked in QA")
- issue type (for example Bug-sub-task)

Also, the extension adds a button "Statistics" in the top menu, which displays the number of issues on board summarized by issue type.

Requires a Jira Software Cloud.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Cards & Colors Cards & Colors
ID gaifepagmjpnjklffdfcpmcojjliacge
Επίσημο URL https://chromewebstore.google.com/detail/cards-colors/gaifepagmjpnjklffdfcpmcojjliacge
Περιγραφή Extension enhances visibility to issues and cards on Jira Agile boards based on colored edges and statuses
Μέγεθος Αρχείου 524 KB
Αριθμός Εγκαταστάσεων 90
Τρέχουσα Έκδοση 1.0.25
Τελευταία Ενημέρωση 2024-02-27
Ημερομηνία Δημοσίευσης 2022-05-30
Αξιολόγηση 5.00/5 Συνολικά 3 Αξιολογήσεις
Προγραμματιστής 3rdUnknown
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Cards & Colors",
    "version": "1.0.25",
    "manifest_version": 3,
    "description": "Extension enhances visibility to issues and cards on Jira Agile boards based on colored edges and statuses",
    "author": "3rdUnknown",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "action": {
        "default_title": "Cards & Colors",
        "default_popup": "src\/options_custom\/index.html"
    },
    "background": {
        "service_worker": "src\/bg\/background.js"
    },
    "options_page": "src\/options_custom\/index.html",
    "permissions": [
        "storage",
        "notifications"
    ],
    "host_permissions": [
        "https:\/\/*.atlassian.net\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.atlassian.net\/*"
            ],
            "css": [
                "src\/inject\/inject.css"
            ]
        },
        {
            "matches": [
                "https:\/\/*.atlassian.net\/*"
            ],
            "js": [
                "src\/inject\/inject.js"
            ]
        }
    ]
}