Jira Board Backlog Status Enhancer

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

What is Jira Board Backlog Status Enhancer?

Jira Board Backlog Status Enhancer is a Chrome extension developed by Douglas Medeiros, and its main feature is "Adds color-coded status labels to issues on the Jira Board backlog page, improving workflow visualization for users.".

Extension Screenshots

screenshot

Download Jira Board Backlog Status Enhancer Extension CRX File

Download Jira Board Backlog Status Enhancer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Jira Board Backlog Status Enhancer Jira Board Backlog Status Enhancer
ID hmhebmpaadglhidmcjlnanfkeklombkk
Official URL https://chromewebstore.google.com/detail/jira-board-backlog-status/hmhebmpaadglhidmcjlnanfkeklombkk
Description Adds color-coded status labels to issues on the Jira Board backlog page, improving workflow visualization for users.
File Size 461 KB
Installation Count 86
Current Version 0.3.2
Last Updated 2023-05-10
Publish Date 2023-03-29
Rating 5.00/5 Total 1 Ratings
Developer Douglas Medeiros
Email [email protected]
Payment Type free
Extension Website https://github.com/medeirosinacio/jira-backlog-issue-status-extension
Help Page URL https://github.com/medeirosinacio/jira-backlog-issue-status-extension/issues
Privacy Policy Page URL https://github.com/medeirosinacio/extension-privacy-policy
Supported Languages 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
        }
    ]
}