Azure DevOps Pipeline Tags
Display pipline run tags in pipeline list view
Azure DevOps Pipeline Tags là gì?
Azure DevOps Pipeline Tags là một tiện ích mở rộng Chrome được phát triển bởi zjleblanc3, và tính năng chính của nó là "Display pipline run tags in pipeline list view".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Azure DevOps Pipeline Tags
Tải xuống các tệp mở rộng Azure DevOps Pipeline Tags dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Azure DevOps Pipeline Tags |
ID | kfjnilhndgohjnfcoinclcafcekfccjo |
URL Chính Thức | https://chromewebstore.google.com/detail/azure-devops-pipeline-tag/kfjnilhndgohjnfcoinclcafcekfccjo |
Mô tả | Display pipline run tags in pipeline list view |
Kích Thước Tệp | 34.65 KB |
Số Lần Cài Đặt | 67 |
Phiên Bản Hiện Tại | 1.3 |
Cập Nhật Lần Cuối | 2022-11-22 |
Ngày Phát Hành | 2021-10-27 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | zjleblanc3 |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/zjleblanc/ado-pipeline-tags-ext |
URL Trang Trợ Giúp | https://github.com/zjleblanc/ado-pipeline-tags-ext/issues |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |