Azure DevOps Pipeline Tags

Display pipline run tags in pipeline list view

Wat is Azure DevOps Pipeline Tags?

Azure DevOps Pipeline Tags is een Chrome-extensie ontwikkeld door zjleblanc3, en de belangrijkste functie is "Display pipline run tags in pipeline list view".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Azure DevOps Pipeline Tags

Download Azure DevOps Pipeline Tags-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        This extension will enhance your Azure DevOps experience by displaying pipeline run tags in the pipeline list view. Without this extension, you have to use a filter with a known tag or click into each specific build in order to identify a build tagged with a particular value. 

Added HTML elements conform to Azure DevOps style use the bolt design system.

Version 1.3
⭐  Added tooltip in bottom right to show all tags when there are too many to show in list view
🐛  Prevent duplicate tags from being shown                    

Basisinformatie over de Extensie

Naam Azure DevOps Pipeline Tags Azure DevOps Pipeline Tags
ID kfjnilhndgohjnfcoinclcafcekfccjo
Officiële URL https://chromewebstore.google.com/detail/azure-devops-pipeline-tag/kfjnilhndgohjnfcoinclcafcekfccjo
Beschrijving Display pipline run tags in pipeline list view
Bestandsgrootte 34.65 KB
Aantal Installaties 67
Huidige Versie 1.3
Laatst Bijgewerkt 2022-11-22
Publicatiedatum 2021-10-27
Beoordeling 5.00/5 Totaal 2 Beoordelingen
Ontwikkelaar zjleblanc3
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/zjleblanc/ado-pipeline-tags-ext
Help Pagina-URL https://github.com/zjleblanc/ado-pipeline-tags-ext/issues
Ondersteunde Talen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Azure DevOps Pipeline Tags",
    "description": "Display pipline run tags in pipeline list view",
    "author": "Zach LeBlanc",
    "version": "1.3",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/dev.azure.com\/*",
                "*:\/\/visualstudio.com\/*"
            ],
            "include_globs": [
                "https:\/\/dev.azure.com\/*_build?definitionId=*"
            ],
            "js": [
                "include\/jquery-3.6.0.slim.min.js",
                "scripts\/main.js"
            ],
            "css": [
                "css\/main.css"
            ]
        }
    ],
    "permissions": [
        "cookies",
        "tabs",
        "webNavigation",
        "scripting",
        "storage"
    ],
    "host_permissions": [
        "https:\/\/dev.azure.com\/*"
    ],
    "icons": {
        "16": "img\/tag-16.png",
        "48": "img\/tag-48.png"
    }
}