Export for Trello

Export Trello Boards to Excel

Was ist Export for Trello?

Export for Trello ist eine Chrome-Erweiterung, die von Mark Woodall entwickelt wurde, und ihr Hauptmerkmal ist "Export Trello Boards to Excel".

Erweiterungsscreenshots

screenshot
screenshot

Export for Trello-Erweiterungs-CRX-Datei herunterladen

Laden Sie Export for Trello-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Export for Trello Export for Trello
ID nhdelomnagopgaealggpgojkhcafhnin
Offizielle URL https://chromewebstore.google.com/detail/export-for-trello/nhdelomnagopgaealggpgojkhcafhnin
Beschreibung Export Trello Boards to Excel
Dateigröße 114 KB
Installationsanzahl 65,501
Aktuelle Version 1.8
Letztes Update 2015-04-16
Veröffentlichungsdatum 2015-04-16
Bewertung 4.41/5 Insgesamt 335 Bewertungen
Entwickler Mark Woodall
Zahlungsart free
Erweiterungswebsite https://github.com/llad/export-for-trello
Hilfeseite URL https://github.com/llad/export-for-trello
Unterstützte Sprachen 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"
    ]
}