Jira Board Backlog Status Enhancer

Adds color-coded status labels to issues on the Jira Board backlog page, improving workflow visualization for users.

Was ist Jira Board Backlog Status Enhancer?

Jira Board Backlog Status Enhancer ist eine Chrome-Erweiterung, die von Douglas Medeiros entwickelt wurde, und ihr Hauptmerkmal ist "Adds color-coded status labels to issues on the Jira Board backlog page, improving workflow visualization for users.".

Erweiterungsscreenshots

screenshot

Jira Board Backlog Status Enhancer-Erweiterungs-CRX-Datei herunterladen

Laden Sie Jira Board Backlog Status Enhancer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        This is a browser extension that adds missing issue status information to the backlog page of Jira. It is available for download on the Chrome Store.

The extension was motivated by the issue of missing issue status information on the backlog page of Jira projects managed by companies. This made it difficult to view the status of each issue on the task board, resulting in an unorganized display of information. With this extension, the status of each issue is now displayed on the task board, resulting in a more organized and easily readable display of information.

PRIVACY
No tracking, no advertising, and nothing else nefarious.

SOURCE CODE
github.com/medeirosinacio/jira-backlog-issue-status-extension

ISSUES
github.com/medeirosinacio/jira-backlog-issue-status-extension/issues                    

Grundlegende Informationen zur Erweiterung

Name Jira Board Backlog Status Enhancer Jira Board Backlog Status Enhancer
ID hmhebmpaadglhidmcjlnanfkeklombkk
Offizielle URL https://chromewebstore.google.com/detail/jira-board-backlog-status/hmhebmpaadglhidmcjlnanfkeklombkk
Beschreibung Adds color-coded status labels to issues on the Jira Board backlog page, improving workflow visualization for users.
Dateigröße 461 KB
Installationsanzahl 86
Aktuelle Version 0.3.2
Letztes Update 2023-05-10
Veröffentlichungsdatum 2023-03-29
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler Douglas Medeiros
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/medeirosinacio/jira-backlog-issue-status-extension
Hilfeseite URL https://github.com/medeirosinacio/jira-backlog-issue-status-extension/issues
URL der Datenschutzrichtlinien-Seite https://github.com/medeirosinacio/extension-privacy-policy
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Jira Board Backlog Status Enhancer",
    "author": "Douglas Medeiros ",
    "description": "Adds color-coded status labels to issues on the Jira Board backlog page, improving workflow visualization for users.",
    "version": "0.3.2",
    "icons": {
        "16": "logo\/logo-16.png",
        "48": "logo\/logo-48.png",
        "128": "logo\/logo-128.png"
    },
    "permissions": [],
    "host_permissions": [],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.atlassian.net\/*"
            ],
            "run_at": "document_start",
            "js": [
                "resources\/inject.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "resources\/script.js",
                "resources\/style.css"
            ],
            "matches": [
                "https:\/\/*.atlassian.net\/*"
            ],
            "use_dynamic_url": true
        }
    ]
}