Estimations Plugin for Microsoft Planner

This extension sums up numbers given in the title of Microsoft Planner cards

Estimations Plugin for Microsoft Plannerคืออะไร?

Estimations Plugin for Microsoft Planner เป็นส่วนขยายของ Chrome ที่พัฒนาโดย chrome-estimations-plugin และคุณลักษณะหลักของมันคือ "This extension sums up numbers given in the title of Microsoft Planner cards"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Estimations Plugin for Microsoft Planner

ดาวน์โหลดไฟล์ส่วนขยาย Estimations Plugin for Microsoft Planner ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        This is a plugin for Microsoft Planner which allows you to organize tasks as cards in multiple columns.

GOAL
This plugin will extend the functionality of Planner by estimations. For each card, you can set an original estimation and a remaining estimation. Typically, the original estimation is given at the time when you create a new card. Only when you start working on a card, you will update the remaining estimation. E.g., imagine you create a card labelled "Prepare dinner", and you estimate the effort with "3" hours. This would be your original estimation. Now, if you start working on that card, and you take a break after "1" hour, you would update the remaining estimation with "2" hours.

HOW DOES IT WORK?
The original estimation will be given as number in round brackets as part of the card's label, while the remaining estimation will be given as number in square brackets. E.g., you would write "(3) Prepare Dinner [5]".

The plugin sums up all original (remaining) estimations for all cards of a column, and displays the sum as part of the column's title.                    

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

ชื่อ Estimations Plugin for Microsoft Planner Estimations Plugin for Microsoft Planner
ID opojklifmgglalpfgbhfnocboncbfcdj
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/estimations-plugin-for-mi/opojklifmgglalpfgbhfnocboncbfcdj
คำอธิบาย This extension sums up numbers given in the title of Microsoft Planner cards
ขนาดไฟล์ 26.73 KB
จำนวนการติดตั้ง 3,607
เวอร์ชันปัจจุบัน 1.65
อัปเดตครั้งล่าสุด 2022-10-22
วันที่เผยแพร่ 2020-04-12
คะแนน 4.13/5 รวมทั้งหมด 16 คะแนน
ผู้พัฒนา chrome-estimations-plugin
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/drabiger/estimationsChromePlugin
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Estimations Plugin for Microsoft Planner",
    "description": "This extension sums up numbers given in the title of Microsoft Planner cards",
    "version": "1.65",
    "short_name": "Planner Estimations",
    "author": "Dirk R\u00e4biger, Pablo Rivero, [email protected]",
    "icons": {
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/tasks.office.com\/*\/Planner*"
            ],
            "css": [
                "bootstrap-iso.css",
                "estimates.css"
            ],
            "js": [
                "estimates.js"
            ],
            "run_at": "document_end"
        }
    ]
}