Sprint Graph

Visualize Jira Sprints as graphs

Sprint Graph là gì?

Sprint Graph là một tiện ích mở rộng Chrome được phát triển bởi DJP Dev, và tính năng chính của nó là "Visualize Jira Sprints as graphs".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Sprint Graph

Tải xuống các tệp mở rộng Sprint Graph dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Sprint Graph Sprint Graph
ID hecogafddplfnihdjidkifklonijigap
URL Chính Thức https://chromewebstore.google.com/detail/sprint-graph/hecogafddplfnihdjidkifklonijigap
Mô tả Visualize Jira Sprints as graphs
Kích Thước Tệp 323 KB
Số Lần Cài Đặt 29
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2023-07-12
Ngày Phát Hành 2020-06-07
Đánh Giá 2.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển DJP Dev
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/dp28/sprint-graph
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}