Jira Estimates Sum
Sum of Jira point and time estimates for columns and total for sprint
Jira Estimates Sum क्या है?
Jira Estimates Sum fsa द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Sum of Jira point and time estimates for columns and total for sprint"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Jira Estimates Sum एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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 } |