Azure DevOps Pipeline Tags

Display pipline run tags in pipeline list view

Что такое Azure DevOps Pipeline Tags?

Azure DevOps Pipeline Tags - это расширение Chrome, разработанное zjleblanc3, и его основная функция - "Display pipline run tags in pipeline list view".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Azure DevOps Pipeline Tags

Скачайте файлы расширений 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 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"
    }
}