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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}