Jira Estimates Sum

Sum of Jira point and time estimates for columns and total for sprint

Jira Estimates Sum란 무엇입니까?

Jira Estimates Sum은(는) fsa에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Sum of Jira point and time estimates for columns and total for sprint"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Jira Estimates Sum 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Displays a sum of estimates (works for both points and time) at the top of each column and a total next to the sprint title.

Works with:
- Classic Scrum Board (both points and time estimates)
- Next Gen Scrum Board

For time estimates it takes Jira defaults - 60 minutes, 8 hours, 5 days.

Feature requests, issues and suggestions welcome at https://github.com/filip-savic/jira-estimates-sum-chrome-ext                    

확장 프로그램 기본 정보

이름 Jira Estimates Sum Jira Estimates Sum
ID hgbdjafjcidfmpgbcadmccmfinoinffe
공식 URL https://chromewebstore.google.com/detail/jira-estimates-sum/hgbdjafjcidfmpgbcadmccmfinoinffe
설명 Sum of Jira point and time estimates for columns and total for sprint
파일 크기 16.02 KB
설치 횟수 46
현재 버전 1.1.1
최근 업데이트 2024-01-02
출시 날짜 2020-09-22
개발자 fsa
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://github.com/filip-savic/jira-estimates-sum-chrome-ext
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Jira Estimates Sum",
    "version": "1.1.1",
    "description": "Sum of Jira point and time estimates for columns and total for sprint",
    "permissions": [
        "tabs",
        "webNavigation"
    ],
    "host_permissions": [
        "https:\/\/*.atlassian.net\/secure\/RapidBoard.jspa*",
        "https:\/\/*.atlassian.net\/jira\/software\/projects\/*\/boards\/*"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.atlassian.net\/secure\/RapidBoard.jspa*",
                "https:\/\/*.atlassian.net\/jira\/software\/*\/projects\/*\/boards\/*",
                "https:\/\/*.atlassian.net\/jira\/software\/projects\/*\/boards\/*"
            ],
            "js": [
                "index.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "manifest_version": 3
}