Azure DevOps Pipeline Tags

Display pipline run tags in pipeline list view

什么是Azure DevOps Pipeline Tags?

Azure DevOps Pipeline Tags是由zjleblanc3开发的Chrome扩展程序,该扩展的主要功能是“Display pipline run tags in pipeline list view”。

扩展截图

screenshot

下载Azure DevOps Pipeline Tags扩展crx文件

下载Azure DevOps Pipeline Tags扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 Azure DevOps Pipeline Tags Azure DevOps Pipeline Tags
ID kfjnilhndgohjnfcoinclcafcekfccjo
官方URL https://chromewebstore.google.com/detail/azure-devops-pipeline-tag/kfjnilhndgohjnfcoinclcafcekfccjo
简介 Display pipline run tags in pipeline list view
文件大小 34.65 KB
安装次数 67
当前版本 1.3
更新时间 2022-11-22
上架时间 2021-10-27
评分 5.00/5 共2次评分
开发者 zjleblanc3
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/zjleblanc/ado-pipeline-tags-ext
帮助页面URL https://github.com/zjleblanc/ado-pipeline-tags-ext/issues
支持的语言 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"
    }
}