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
Eメール [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": [
                ""
            ]
        }
    ]
}