Sprint Graph

Visualize Jira Sprints as graphs

Co to jest Sprint Graph?

Sprint Graph to rozszerzenie Chrome opracowane przez DJP Dev, a jego główną funkcją jest „Visualize Jira Sprints as graphs”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Sprint Graph

Pobierz pliki rozszerzeń Sprint Graph w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Sprint Graph Sprint Graph
ID hecogafddplfnihdjidkifklonijigap
Oficjalny URL https://chromewebstore.google.com/detail/sprint-graph/hecogafddplfnihdjidkifklonijigap
Opis Visualize Jira Sprints as graphs
Rozmiar pliku 323 KB
Liczba instalacji 29
Aktualna Wersja 1.0.0
Ostatnia Aktualizacja 2023-07-12
Data Publikacji 2020-06-07
Ocena 2.00/5 Łącznie 1 Oceny
Deweloper DJP Dev
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/dp28/sprint-graph
Obsługiwane Języki 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"
    }
}