Export for Trello

Export Trello Boards to Excel

Export for Trello란 무엇입니까?

Export for Trello은(는) Mark Woodall에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Export Trello Boards to Excel"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Exports a board to an Excel xlsx file.

Usage: From a board, Menu > Share, Print, and Export > Export Excel.

Note: Once installed, might take a refresh or two of Trello before it starts to show up.

New in version 1.7:
Added the card URL, so you can quickly get back to a specific card in the export.

Exported Fields:
* List
* Title/Name
* Description
* Points - using format "(1)" in Title field
* Due Date
* Members Initials
* Labels
* Card #
* Card URL

Archived cards are exported to a second tab in the workbook.                    

확장 프로그램 기본 정보

이름 Export for Trello Export for Trello
ID nhdelomnagopgaealggpgojkhcafhnin
공식 URL https://chromewebstore.google.com/detail/export-for-trello/nhdelomnagopgaealggpgojkhcafhnin
설명 Export Trello Boards to Excel
파일 크기 114 KB
설치 횟수 65,501
현재 버전 1.8
최근 업데이트 2015-04-16
출시 날짜 2015-04-16
평점 4.41/5 총 335 개의 평점
개발자 Mark Woodall
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/llad/export-for-trello
도움말 페이지 URL https://github.com/llad/export-for-trello
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Export for Trello",
    "version": "1.8",
    "manifest_version": 2,
    "description": "Export Trello Boards to Excel",
    "icons": {
        "128": "icons\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/trello.com\/*"
            ],
            "js": [
                "lib\/jquery-2.1.0.min.js",
                "lib\/FileSaver.js",
                "lib\/xlsx.js",
                "lib\/jszip.min.js",
                "trelloexport.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "lib\/jquery-2.1.0.min.map"
    ]
}