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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Douglas Medeiros และคุณลักษณะหลักของมันคือ "Adds color-coded status labels to issues on the Jira Board backlog page, improving workflow visualization for users."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Jira Board Backlog Status Enhancer

ดาวน์โหลดไฟล์ส่วนขยาย 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
        }
    ]
}