Trello Priority

Labeling priority using Impact/Cost scores

Trello Priority란 무엇입니까?

Trello Priority은(는) ynunokawa.dev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Labeling priority using Impact/Cost scores"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Trello Priority 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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)                    

확장 프로그램 기본 정보

이름 Trello Priority Trello Priority
ID cnkhgafbkcdclefdglbgdghohlomiofn
공식 URL https://chromewebstore.google.com/detail/trello-priority/cnkhgafbkcdclefdglbgdghohlomiofn
설명 Labeling priority using Impact/Cost scores
파일 크기 63.92 KB
설치 횟수 268
현재 버전 1.6
최근 업데이트 2019-06-13
출시 날짜 2019-06-13
평점 4.25/5 총 4 개의 평점
개발자 ynunokawa.dev
결제 유형 free
지원되는 언어 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"
        ]
    }
}