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
官方網址 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"
    }
}