Estimations sum for Jira boards
This extension sums up the remaining time estimates shown in a scrum board of Jira
Estimations sum for Jira boards란 무엇입니까?
Estimations sum for Jira boards은(는) drabiger에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension sums up the remaining time estimates shown in a scrum board of Jira"입니다.
확장 프로그램 스크린샷
Estimations sum for Jira boards 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Atlassian Jira's has a feature to capture estimations and remaining estimates in issues. You can configure Jira to show these numbers on the issue cards in scrum board. I found it useful to see the sum of all issues for each column. Unfortunately, Jira lacks such a feature. When turned on, this Chrome extension will calculate the sum of "remaining estimates" for each column, taking into account all issues being displayed. If you apply a filter, the sum will be calculated only for the issues matching your filter settings. With version 1.00, the plugin additionally shows the number of cards, per column, in brackets. This additional feature was added by Jan Topiński (simcha). The extension was tested with Jira cloud and with Jira 7.3.8. Happy to get your feedback!
확장 프로그램 기본 정보
이름 | |
ID | mmbocjepfajlidapdnikdjebbdfjgbki |
공식 URL | https://chromewebstore.google.com/detail/estimations-sum-for-jira/mmbocjepfajlidapdnikdjebbdfjgbki |
설명 | This extension sums up the remaining time estimates shown in a scrum board of Jira |
파일 크기 | 212 KB |
설치 횟수 | 675 |
현재 버전 | 1.00 |
최근 업데이트 | 2020-04-07 |
출시 날짜 | 2020-04-05 |
평점 | 4.50/5 총 8 개의 평점 |
개발자 | drabiger |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/drabiger/estimationsSumForJira |
도움말 페이지 URL | https://github.com/drabiger/estimationsSumForJira |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Estimations sum for Jira boards", "description": "This extension sums up the remaining time estimates shown in a scrum board of Jira", "version": "1.00", "short_name": "Jira Estimations Sum", "author": "Dirk R\u00e4biger", "icons": { "128": "icon.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/secure\/RapidBoard.jspa?*", "https:\/\/*\/secure\/RapidBoard.jspa?*" ], "css": [ "bootstrap.min.css", "estimates.css" ], "js": [ "jquery.min.js", "estimates.js" ], "run_at": "document_end" } ] } |