Sprint Graph

Visualize Jira Sprints as graphs

Sprint Graph란 무엇입니까?

Sprint Graph은(는) DJP Dev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Visualize Jira Sprints as graphs"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Sprint Graph 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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