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」です。
拡張機能のスクリーンショット
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 |
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 |
Eメール | [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" } } |