Scrummer Azure Board

Add column total size in azure devops board

Scrummer Azure Board란 무엇입니까?

Scrummer Azure Board은(는) Arnaud Dufour에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add column total size in azure devops board"입니다.

확장 프로그램 스크린샷

screenshot

Scrummer Azure Board 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        On top of each column in azure devops board, add the sum of all sizes of cards in that column                    

확장 프로그램 기본 정보

이름 Scrummer Azure Board Scrummer Azure Board
ID oggkfdgihjbkeacchoccbjigbebaackg
공식 URL https://chromewebstore.google.com/detail/scrummer-azure-board/oggkfdgihjbkeacchoccbjigbebaackg
설명 Add column total size in azure devops board
파일 크기 16.68 KB
설치 횟수 21
현재 버전 1.0.3
최근 업데이트 2021-09-23
출시 날짜 2020-05-11
개발자 Arnaud Dufour
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://github.com/arnaud9145/azure-board-card-number
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Scrummer Azure Board",
    "version": "1.0.3",
    "description": "Add column total size in azure devops board",
    "icons": {
        "16": ".\/assets\/icon\/icon16.png",
        "48": ".\/assets\/icon\/icon48.png",
        "128": ".\/assets\/icon\/icon128.png"
    },
    "browser_action": {
        "default_title": "Add total points",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/dev.azure.com\/**\/board\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "main.js"
            ]
        }
    ],
    "manifest_version": 2,
    "permissions": [
        "activeTab"
    ]
}