Azure DevOps Pipeline Tags

Display pipline run tags in pipeline list view

Azure DevOps Pipeline Tagsคืออะไร?

Azure DevOps Pipeline Tags เป็นส่วนขยายของ Chrome ที่พัฒนาโดย zjleblanc3 และคุณลักษณะหลักของมันคือ "Display pipline run tags in pipeline list view"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Azure DevOps Pipeline Tags

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    }
}