Jira Backlog Status

This extension displays Jira Ticket Statuses in the Backlog Board View for those that use the Software Project type.

Τι είναι το Jira Backlog Status;

Το Jira Backlog Status είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Xzula Dev, και η κύρια λειτουργία του είναι "This extension displays Jira Ticket Statuses in the Backlog Board View for those that use the Software Project type.".

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

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Jira Backlog Status

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

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

                        This extension only works on the Jira Website and only on the specific Backlog View starting with https://*.atlassian.net/jira/software/. If you're using a different Project Type this extension will not work.

The extension does not work out of the box, you need to first configure in Board Settings displaying extra fields under the Card Layout tab. Make sure you add the Status field as the first Extra Field for both the Backlog and Active Sprint sections.

UPDATE (v1.0.2): We now load all of the project statuses from Jira - all of your projects custom statuses should now be stored and color-highlighted correctly.                    

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

Όνομα Jira Backlog Status Jira Backlog Status
ID akgnkdmkhpgnhmhmanhfclpkencoebbb
Επίσημο URL https://chromewebstore.google.com/detail/jira-backlog-status/akgnkdmkhpgnhmhmanhfclpkencoebbb
Περιγραφή This extension displays Jira Ticket Statuses in the Backlog Board View for those that use the Software Project type.
Μέγεθος Αρχείου 299 KB
Αριθμός Εγκαταστάσεων 443
Τρέχουσα Έκδοση 1.0.2
Τελευταία Ενημέρωση 2023-03-14
Ημερομηνία Δημοσίευσης 2022-05-17
Αξιολόγηση 4.40/5 Συνολικά 5 Αξιολογήσεις
Προγραμματιστής Xzula Dev
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Jira Backlog Status",
    "author": "Efroim Rosenberg",
    "version": "1.0.2",
    "description": "This extension displays Jira Ticket Statuses in the Backlog Board View for those that use the Software Project type.",
    "permissions": [
        "activeTab",
        "tabs",
        "scripting"
    ],
    "host_permissions": [
        "https:\/\/*.atlassian.net\/jira\/software\/*"
    ],
    "icons": {
        "16": "icon.png",
        "32": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "action": {
        "default_title": "Jira Backlog Status"
    },
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.atlassian.net\/jira\/software\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "content.js",
                "content.css",
                "icon.png"
            ],
            "matches": [
                ""
            ]
        }
    ]
}