Parents for Azure Devops Boards

Fetch and display the parent of each item and also the remainings in Azure Devops Boards

Qu'est-ce que Parents for Azure Devops Boards ?

Parents for Azure Devops Boards est une extension Chrome développée par jdmry, et sa fonction principale est "Fetch and display the parent of each item and also the remainings in Azure Devops Boards".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Parents for Azure Devops Boards

Téléchargez les fichiers d'extension Parents for Azure Devops Boards 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

                        Pre-requisites
 - In your board display settings, choose to display the ID of the work item on the card
 - Use the new azure devops url pattern (eg. https://dev.azure.com/org/....)

How to use
 - Refresh the board page and click on the extension icon
 - If anything goes wrong at any time or it doesn't work, please just refresh the page and re-click on the extension icon                    

Informations de Base sur l'Extension

Nom Parents for Azure Devops Boards Parents for Azure Devops Boards
ID fbdbipdlfojffkpopckfpohmaiabglad
URL Officiel https://chromewebstore.google.com/detail/parents-for-azure-devops/fbdbipdlfojffkpopckfpohmaiabglad
Description Fetch and display the parent of each item and also the remainings in Azure Devops Boards
Taille du Fichier 466 KB
Nombre d'Installations 118
Version Actuelle 1.1.0
Dernière Mise à Jour 2019-10-29
Date de Publication 2019-10-29
Évaluation 4.67/5 Total 3 Évaluations
Développeur jdmry
Type de Paiement free
Langues Prises en Charge en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Parents for Azure Devops Boards",
    "version": "1.1.0",
    "description": "Fetch and display the parent of each item and also the remainings in Azure Devops Boards",
    "permissions": [
        "https:\/\/dev.azure.com\/",
        "storage",
        "activeTab",
        "webRequest"
    ],
    "background": {
        "scripts": [
            "src\/bg\/background.js",
            "js\/jquery-3.4.1.min.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/dev.azure.com\/*\/*\/_boards\/board\/t\/*",
                "https:\/\/dev.azure.com\/*\/*\/_sprints\/taskboard\/*"
            ],
            "js": [
                "src\/inject\/fa.js",
                "src\/inject\/inject.js",
                "js\/jquery-3.4.1.min.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Bring Parents!"
    },
    "manifest_version": 2,
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    }
}