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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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