Trello List Wizard

This extension adds more functionality to your Trello boards

Trello List Wizard란 무엇입니까?

Trello List Wizard은(는) webXID.net에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension adds more functionality to your Trello boards"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Add more functionality to Trello boards
==================================

# Change your cards view:

- Width
- Title font size
- Show/hide:  
   + card numbers
   + card title tags style  (+ AutoReplace)
   + card preview images
   + special style for "Done" list


# Add more Titles tags type: 

- Time
   + Estimate time
   + Spent time
   + Total time
      * for each card list
      * for each card checklist
- Priority
- Project
- Buget
  + Total Budget 
      * for each card list                    

확장 프로그램 기본 정보

이름 Trello List Wizard Trello List Wizard
ID mkbinjaoeonjpjojkkabokgmiljodmip
공식 URL https://chromewebstore.google.com/detail/trello-list-wizard/mkbinjaoeonjpjojkkabokgmiljodmip
설명 This extension adds more functionality to your Trello boards
파일 크기 94.84 KB
설치 횟수 386
현재 버전 1.1.2
최근 업데이트 2018-01-15
출시 날짜 2018-01-14
평점 4.38/5 총 13 개의 평점
개발자 webXID.net
이메일 [email protected]
결제 유형 in_app
확장 프로그램 웹 사이트 https://webxid.net
지원되는 언어 en
manifest.json
{
    "name": "Trello List Wizard",
    "short_name": "Trello List Wizard",
    "description": "This extension adds more functionality to your Trello boards",
    "author": "Pavlo Matsura",
    "content_scripts": [
        {
            "css": [
                "trello-wizard.css"
            ],
            "js": [
                "jquery.js",
                "trello-wizard-fn.js",
                "trello-wizard-class.js",
                "trello-wizard-requests.js",
                "trello-wizard.js",
                "notifications.js"
            ],
            "matches": [
                "https:\/\/trello.com\/*",
                "https:\/\/webxid.net\/*"
            ]
        }
    ],
    "manifest_version": 2,
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "1.1.2",
    "browser_action": {
        "default_icon": {
            "16": "icon-49.png",
            "38": "icon-49.png",
            "128": "icon-128.png"
        },
        "default_title": "Trello List Wizard",
        "default_popup": "trello-wizard.html"
    },
    "web_accessible_resources": [
        "icon-128.png",
        "beta-theme.css",
        "trello-theme.css"
    ],
    "permissions": [
        "tabs",
        "activeTab",
        "https:\/\/webxid.net\/*",
        "https:\/\/api.webxid.net\/*"
    ],
    "icons": {
        "16": "icon-49.png",
        "128": "icon-128.png"
    },
    "content_security_policy": "script-src 'self' https:\/\/www.google.com; object-src 'self'"
}