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はjdmryによって開発されたChromeの拡張機能で、その主な機能は「Fetch and display the parent of each item and also the remainings in Azure Devops Boards」です。

拡張機能のスクリーンショット

screenshot
screenshot

Parents for Azure Devops Boards拡張機能のCRXファイルをダウンロード

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"
    }
}