Trello Points

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

Trello Points là gì?

Trello Points là một tiện ích mở rộng Chrome được phát triển bởi nstetich, và tính năng chính của nó là "Sums points for a Trello column when cards have associated points as labels".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Trello Points

Tải xuống các tệp mở rộng Trello Points dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Trello Points Trello Points
ID goigmjpaehddoikooikbblloogaijjpo
URL Chính Thức https://chromewebstore.google.com/detail/trello-points/goigmjpaehddoikooikbblloogaijjpo
Mô tả Sums points for a Trello column when cards have associated points as labels
Kích Thước Tệp 15.17 KB
Số Lần Cài Đặt 22
Phiên Bản Hiện Tại 0.0.10
Cập Nhật Lần Cuối 2016-03-10
Ngày Phát Hành 2016-03-10
Đánh Giá 4.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển nstetich
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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
        }
    ]
}