Money for Trello

This extension adds a cost for each card in trello

Money for Trello란 무엇입니까?

Money for Trello은(는) Beinno에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension adds a cost for each card in trello"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        This extension is very usefull to know every card cost for Trello.
It's based on scrum points. every card should have approximate estimate in it's title like an example:
(2) Testing title
Cost for cards like the above example are determined based on card estimate which is 2 for the above example.
Point cost can be determined via extension options page                    

확장 프로그램 기본 정보

이름 Money for Trello Money for Trello
ID acfcndamepdchedecnjanbdhbmhijchd
공식 URL https://chromewebstore.google.com/detail/money-for-trello/acfcndamepdchedecnjanbdhbmhijchd
설명 This extension adds a cost for each card in trello
파일 크기 3.78 MB
설치 횟수 71
현재 버전 1.9
최근 업데이트 2016-11-12
출시 날짜 2016-11-12
평점 5.00/5 총 4 개의 평점
개발자 Beinno
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Money for Trello",
    "description": "This extension adds a cost for each card in trello",
    "version": "1.9",
    "web_accessible_resources": [
        "css\/*",
        "img\/*.png"
    ],
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.trello.com\/*",
                "https:\/\/www.trello.com\/*",
                "http:\/\/trello.com\/*",
                "https:\/\/trello.com\/*",
                "https:\/\/*.cloudfront.net\/*",
                "file:\/\/\/*\/*.*"
            ],
            "js": [
                "js\/libs\/jquery\/dist\/jquery.min.js",
                "js\/main.js"
            ],
            "css": [
                "css\/main.css"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "page": "background.html",
        "persistent": true
    },
    "options_page": "options.html"
}