Azure DevOps Pipeline Tags
Display pipline run tags in pipeline list view
Azure DevOps Pipeline Tags क्या है?
Azure DevOps Pipeline Tags zjleblanc3 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Display pipline run tags in pipeline list view"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Azure DevOps Pipeline Tags एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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" } } |