Sprint Graph

Visualize Jira Sprints as graphs

Qu'est-ce que Sprint Graph ?

Sprint Graph est une extension Chrome développée par DJP Dev, et sa fonction principale est "Visualize Jira Sprints as graphs".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Sprint Graph

Téléchargez les fichiers d'extension Sprint Graph au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Sprint Graph Sprint Graph
ID hecogafddplfnihdjidkifklonijigap
URL Officiel https://chromewebstore.google.com/detail/sprint-graph/hecogafddplfnihdjidkifklonijigap
Description Visualize Jira Sprints as graphs
Taille du Fichier 323 KB
Nombre d'Installations 29
Version Actuelle 1.0.0
Dernière Mise à Jour 2023-07-12
Date de Publication 2020-06-07
Évaluation 2.00/5 Total 1 Évaluations
Développeur DJP Dev
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/dp28/sprint-graph
Langues Prises en Charge 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"
    }
}