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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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