Trello Priority

Labeling priority using Impact/Cost scores

Trello Priority là gì?

Trello Priority là một tiện ích mở rộng Chrome được phát triển bởi ynunokawa.dev, và tính năng chính của nó là "Labeling priority using Impact/Cost scores".

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

screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng Trello Priority 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

                        It can automatically add a label of priority into cards using Impact/Cost scores.


Getting Started

1. Add Trello Priority into your chrome
2. Create labels for Impact/Cost score (High Cost | Mid Cost | Low Cost | High Impact | Mid Impact | Low Impact)
3. Label each Impact/Cost score (e.g. [High Cost] [Mid Impact])
4. Display priorities after clicking the "Update Priorities" button


Notice

- You should label one each Impact/Cost score
- It does not display a priority on card without valid Impact/Cost scores
- Priority hide if you replace a card into other lists (You can see it clicking the "Update Priorities" button)                    

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

Tên Trello Priority Trello Priority
ID cnkhgafbkcdclefdglbgdghohlomiofn
URL Chính Thức https://chromewebstore.google.com/detail/trello-priority/cnkhgafbkcdclefdglbgdghohlomiofn
Mô tả Labeling priority using Impact/Cost scores
Kích Thước Tệp 63.92 KB
Số Lần Cài Đặt 268
Phiên Bản Hiện Tại 1.6
Cập Nhật Lần Cuối 2019-06-13
Ngày Phát Hành 2019-06-13
Đánh Giá 4.25/5 Tổng số 4 Đánh Giá
Nhà Phát Triển ynunokawa.dev
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": "Trello Priority",
    "description": "Labeling priority using Impact\/Cost scores",
    "version": "1.6",
    "manifest_version": 2,
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "browser_action": {
        "default_popup": "matrix.html",
        "default_icon": "images\/icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/trello.com\/b\/*"
            ],
            "css": [
                "css\/style.css"
            ],
            "js": [
                "lib\/jquery.js",
                "js\/matrix.js"
            ]
        }
    ],
    "permissions": [
        "https:\/\/trello.com\/b\/*"
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "background": {
        "scripts": [
            "js\/analytics.js"
        ]
    }
}