Sprint Graph

Visualize Jira Sprints as graphs

Sprint Graphคืออะไร?

Sprint Graph เป็นส่วนขยายของ Chrome ที่พัฒนาโดย DJP Dev และคุณลักษณะหลักของมันคือ "Visualize Jira Sprints as graphs"

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Sprint Graph

ดาวน์โหลดไฟล์ส่วนขยาย Sprint Graph ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Visualize Jira issue dependencies as a graph so you can more easily figure out what to work on next.

Jira is a useful, feature-rich project management tool that many of us have used to plan out complex projects. However, while it's able to capture complicated hierarchies of blocking issues, it's not very good at displaying these hierarchies.

This extension allows you to view how deeply-nested you're blockers have become, at the epic, issue, and subtask level. It graphs out the relationships between the issues on whichever Jira page you opened the extension on, so you can visualize a single issue and its subtasks, an epic, this sprint, or your entire backlog.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Sprint Graph Sprint Graph
ID hecogafddplfnihdjidkifklonijigap
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/sprint-graph/hecogafddplfnihdjidkifklonijigap
คำอธิบาย Visualize Jira Sprints as graphs
ขนาดไฟล์ 323 KB
จำนวนการติดตั้ง 29
เวอร์ชันปัจจุบัน 1.0.0
อัปเดตครั้งล่าสุด 2023-07-12
วันที่เผยแพร่ 2020-06-07
คะแนน 2.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา DJP Dev
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/dp28/sprint-graph
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Sprint Graph",
    "version": "1.0.0",
    "manifest_version": 3,
    "description": "Visualize Jira Sprints as graphs",
    "background": {
        "service_worker": "backgroundScript.js"
    },
    "permissions": [
        "scripting",
        "activeTab"
    ],
    "action": {
        "default_title": "Sprint Graph"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "icons\/*",
                "*.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self';"
    },
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    }
}