Trello Points

Sums points for a Trello column when cards have associated points as labels

Trello Pointsคืออะไร?

Trello Points เป็นส่วนขยายของ Chrome ที่พัฒนาโดย nstetich และคุณลักษณะหลักของมันคือ "Sums points for a Trello column when cards have associated points as labels"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Trello Points

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

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

                        Sum Points in Trello

If you assign points to cards using a label, this extension will sum all of the point labels by column for visible cards on your board.

Note: I am not affiliated with Trello, but this is how my team uses Trello. If you use it this way, you may find this extension useful.                    

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

ชื่อ Trello Points Trello Points
ID goigmjpaehddoikooikbblloogaijjpo
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/trello-points/goigmjpaehddoikooikbblloogaijjpo
คำอธิบาย Sums points for a Trello column when cards have associated points as labels
ขนาดไฟล์ 15.17 KB
จำนวนการติดตั้ง 22
เวอร์ชันปัจจุบัน 0.0.10
อัปเดตครั้งล่าสุด 2016-03-10
วันที่เผยแพร่ 2016-03-10
คะแนน 4.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา nstetich
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "0.0.10",
    "manifest_version": 2,
    "description": "__MSG_appDescription__",
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/trello.com\/*",
                "https:\/\/trello.com\/*"
            ],
            "js": [
                "scripts\/contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ]
}