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
Eメール [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"
    }
}