Jira Board Backlog Status Enhancer

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

什么是Jira Board Backlog Status Enhancer?

Jira Board Backlog Status Enhancer是由Douglas Medeiros开发的Chrome扩展程序,该扩展的主要功能是“Adds color-coded status labels to issues on the Jira Board backlog page, improving workflow visualization for users.”。

扩展截图

screenshot

下载Jira Board Backlog Status Enhancer扩展crx文件

下载Jira Board Backlog Status Enhancer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 Jira Board Backlog Status Enhancer Jira Board Backlog Status Enhancer
ID hmhebmpaadglhidmcjlnanfkeklombkk
官方URL https://chromewebstore.google.com/detail/jira-board-backlog-status/hmhebmpaadglhidmcjlnanfkeklombkk
简介 Adds color-coded status labels to issues on the Jira Board backlog page, improving workflow visualization for users.
文件大小 461 KB
安装次数 86
当前版本 0.3.2
更新时间 2023-05-10
上架时间 2023-03-29
评分 5.00/5 共1次评分
开发者 Douglas Medeiros
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/medeirosinacio/jira-backlog-issue-status-extension
帮助页面URL https://github.com/medeirosinacio/jira-backlog-issue-status-extension/issues
隐私政策页面URL https://github.com/medeirosinacio/extension-privacy-policy
支持的语言 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
        }
    ]
}