Parents for Azure Devops Boards

Fetch and display the parent of each item and also the remainings in Azure Devops Boards

Что такое Parents for Azure Devops Boards?

Parents for Azure Devops Boards - это расширение Chrome, разработанное jdmry, и его основная функция - "Fetch and display the parent of each item and also the remainings in Azure Devops Boards".

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

screenshot
screenshot

Скачать файл CRX расширения Parents for Azure Devops Boards

Скачайте файлы расширений Parents for Azure Devops Boards в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Pre-requisites
 - In your board display settings, choose to display the ID of the work item on the card
 - Use the new azure devops url pattern (eg. https://dev.azure.com/org/....)

How to use
 - Refresh the board page and click on the extension icon
 - If anything goes wrong at any time or it doesn't work, please just refresh the page and re-click on the extension icon                    

Основная информация о расширении

Название Parents for Azure Devops Boards Parents for Azure Devops Boards
ID fbdbipdlfojffkpopckfpohmaiabglad
Официальный URL https://chromewebstore.google.com/detail/parents-for-azure-devops/fbdbipdlfojffkpopckfpohmaiabglad
Описание Fetch and display the parent of each item and also the remainings in Azure Devops Boards
Размер файла 466 KB
Количество установок 118
Текущая Версия 1.1.0
Последнее Обновление 2019-10-29
Дата публикации 2019-10-29
Рейтинг 4.67/5 Всего 3 оценок
Разработчик jdmry
Тип оплаты free
Поддерживаемые языки en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Parents for Azure Devops Boards",
    "version": "1.1.0",
    "description": "Fetch and display the parent of each item and also the remainings in Azure Devops Boards",
    "permissions": [
        "https:\/\/dev.azure.com\/",
        "storage",
        "activeTab",
        "webRequest"
    ],
    "background": {
        "scripts": [
            "src\/bg\/background.js",
            "js\/jquery-3.4.1.min.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/dev.azure.com\/*\/*\/_boards\/board\/t\/*",
                "https:\/\/dev.azure.com\/*\/*\/_sprints\/taskboard\/*"
            ],
            "js": [
                "src\/inject\/fa.js",
                "src\/inject\/inject.js",
                "js\/jquery-3.4.1.min.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Bring Parents!"
    },
    "manifest_version": 2,
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    }
}