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

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

확장 프로그램 사용 설명서

                        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
        }
    ]
}