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是由Xzula Dev开发的Chrome扩展程序,该扩展的主要功能是“This extension displays Jira Ticket Statuses in the Backlog Board View for those that use the Software Project type.”。

扩展截图

screenshot
screenshot

下载Jira Backlog Status扩展crx文件

下载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": [
                ""
            ]
        }
    ]
}