Azure DevOps Pipeline Tags

Display pipline run tags in pipeline list view

¿Qué es Azure DevOps Pipeline Tags?

Azure DevOps Pipeline Tags es una extensión de Chrome desarrollada por zjleblanc3, y su función principal es "Display pipline run tags in pipeline list view".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Azure DevOps Pipeline Tags

Descarga archivos de extensión Azure DevOps Pipeline Tags en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre Azure DevOps Pipeline Tags Azure DevOps Pipeline Tags
ID kfjnilhndgohjnfcoinclcafcekfccjo
URL Oficial https://chromewebstore.google.com/detail/azure-devops-pipeline-tag/kfjnilhndgohjnfcoinclcafcekfccjo
Descripción Display pipline run tags in pipeline list view
Tamaño del Archivo 34.65 KB
Cantidad de Instalaciones 67
Versión Actual 1.3
Última Actualización 2022-11-22
Fecha de Publicación 2021-10-27
Calificación 5.00/5 Total de 2 Calificaciones
Desarrollador zjleblanc3
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/zjleblanc/ado-pipeline-tags-ext
URL de la Página de Ayuda https://github.com/zjleblanc/ado-pipeline-tags-ext/issues
Idiomas Soportados 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"
    }
}