Export for Trello

Export Trello Boards to Excel

Что такое Export for Trello?

Export for Trello - это расширение Chrome, разработанное Mark Woodall, и его основная функция - "Export Trello Boards to Excel".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Export for Trello

Скачайте файлы расширений Export for Trello в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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"
    ]
}