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」です。
拡張機能のスクリーンショット
Jira Estimates Sum拡張機能のCRXファイルをダウンロード
Jira Estimates Sum拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
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 |
Eメール | [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 } |