Kanbanello for Trello

Shows card count in every list, adds limit for Kanban WIP and allows to combine two lists together

Kanbanello for Trello란 무엇입니까?

Kanbanello for Trello은(는) https://finalem.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Shows card count in every list, adds limit for Kanban WIP and allows to combine two lists together"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Features:

- shows the number of cards in every list in Trello
- filters out divider cards containing two or more =,-,+ or _ characters
- support for Kanban WIP (just add WIP limit to list name in square brackets)
- support list joining (for example, add [0-] to left list title and add [-5] to right list for combine two lists together and set limit 5 for them)                    

확장 프로그램 기본 정보

이름 Kanbanello for Trello Kanbanello for Trello
ID onkejpdhplmfiiafhkjjfalenddohccb
공식 URL https://chromewebstore.google.com/detail/kanbanello-for-trello/onkejpdhplmfiiafhkjjfalenddohccb
설명 Shows card count in every list, adds limit for Kanban WIP and allows to combine two lists together
파일 크기 11.55 KB
설치 횟수 816
현재 버전 0.0.8
최근 업데이트 2017-01-24
출시 날짜 2017-01-24
평점 4.44/5 총 9 개의 평점
개발자 https://finalem.com
이메일 [email protected]
결제 유형 free
지원되는 언어 en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "short_name": "__MSG_extName__",
    "version": "0.0.8",
    "manifest_version": 2,
    "default_locale": "en",
    "description": "__MSG_extDescription__",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "96": "images\/icon96.png",
        "128": "images\/icon128.png"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/trello.com\/*"
            ],
            "js": [
                "js\/app.js"
            ],
            "css": [
                "css\/style.css"
            ],
            "run_at": "document_end"
        }
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "web_accessible_resources": [
        "images\/*.png"
    ],
    "permissions": [
        "storage",
        "https:\/\/trello.com\/"
    ]
}