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 là gì?

Parents for Azure Devops Boards là một tiện ích mở rộng Chrome được phát triển bởi jdmry, và tính năng chính của nó là "Fetch and display the parent of each item and also the remainings in Azure Devops Boards".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Parents for Azure Devops Boards

Tải xuống các tệp mở rộng Parents for Azure Devops Boards dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Parents for Azure Devops Boards Parents for Azure Devops Boards
ID fbdbipdlfojffkpopckfpohmaiabglad
URL Chính Thức https://chromewebstore.google.com/detail/parents-for-azure-devops/fbdbipdlfojffkpopckfpohmaiabglad
Mô tả Fetch and display the parent of each item and also the remainings in Azure Devops Boards
Kích Thước Tệp 466 KB
Số Lần Cài Đặt 118
Phiên Bản Hiện Tại 1.1.0
Cập Nhật Lần Cuối 2019-10-29
Ngày Phát Hành 2019-10-29
Đánh Giá 4.67/5 Tổng số 3 Đánh Giá
Nhà Phát Triển jdmry
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}