Story Point Totals for JIRA Kanban Boards

This extension totals story points in JIRA Kanban boards and puts them at the top of each column.

Story Point Totals for JIRA Kanban Boardsคืออะไร?

Story Point Totals for JIRA Kanban Boards เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://noahcoffey.com และคุณลักษณะหลักของมันคือ "This extension totals story points in JIRA Kanban boards and puts them at the top of each column."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Story Point Totals for JIRA Kanban Boards

ดาวน์โหลดไฟล์ส่วนขยาย Story Point Totals for JIRA Kanban Boards ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This extension will count up story point values present in any cards contained in a JIRA Kanban (rapid board) and show the total points at the top of each column (replacing the displayed number of cards).                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Story Point Totals for JIRA Kanban Boards Story Point Totals for JIRA Kanban Boards
ID codmglobaohfdpjjckagjaanifogeili
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/story-point-totals-for-ji/codmglobaohfdpjjckagjaanifogeili
คำอธิบาย This extension totals story points in JIRA Kanban boards and puts them at the top of each column.
ขนาดไฟล์ 19.07 KB
จำนวนการติดตั้ง 201
เวอร์ชันปัจจุบัน 0.0.2
อัปเดตครั้งล่าสุด 2019-07-02
วันที่เผยแพร่ 2019-07-02
คะแนน 2.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา https://noahcoffey.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://noahcoffey.com/jira-story-points/
URL หน้าช่วยเหลือ https://noahcoffey.com/jira-story-points/
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Story Point Totals for JIRA Kanban Boards",
    "short_name": "JIRA Story Point Totals",
    "version": "0.0.2",
    "manifest_version": 2,
    "description": "This extension totals story points in JIRA Kanban boards and puts them at the top of each column.",
    "homepage_url": "https:\/\/noahcoffey.com\/jira-story-points",
    "author": "Noah Coffey",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.atlassian.net\/*"
            ],
            "js": [
                "src\/inject\/inject.js"
            ]
        }
    ]
}