Sprint Graph

Visualize Jira Sprints as graphs

什么是Sprint Graph?

Sprint Graph是由DJP Dev开发的Chrome扩展程序,该扩展的主要功能是“Visualize Jira Sprints as graphs”。

扩展截图

screenshot
screenshot

下载Sprint Graph扩展crx文件

下载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"
    }
}