Azure DevOps Pipeline Tags
Display pipline run tags in pipeline list view
Cos'è Azure DevOps Pipeline Tags?
Azure DevOps Pipeline Tags è un'estensione di Chrome sviluppata da zjleblanc3, e la sua funzione principale è "Display pipline run tags in pipeline list view".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Azure DevOps Pipeline Tags
Scarica i file di estensione Azure DevOps Pipeline Tags in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | Azure DevOps Pipeline Tags |
ID | kfjnilhndgohjnfcoinclcafcekfccjo |
URL Ufficiale | https://chromewebstore.google.com/detail/azure-devops-pipeline-tag/kfjnilhndgohjnfcoinclcafcekfccjo |
Descrizione | Display pipline run tags in pipeline list view |
Dimensione del File | 34.65 KB |
Conteggio Installazioni | 67 |
Versione Corrente | 1.3 |
Ultimo Aggiornamento | 2022-11-22 |
Data di Pubblicazione | 2021-10-27 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | zjleblanc3 |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/zjleblanc/ado-pipeline-tags-ext |
URL della Pagina di Aiuto | https://github.com/zjleblanc/ado-pipeline-tags-ext/issues |
Lingue Supportate | 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" } } |