Trello Export

Trello Export

Exports your Trello data in CSV, JSON, XML, and TXT formats.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Trello Export",
  "short_name": "Trello Export",
  "description": "Exports your Trello data in CSV, JSON, XML, and TXT formats.",
  "version": "1.0",
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://trello.com/*"
      ],
      "js": [
        "libs/FileSaver.min.js",
        "libs/jszip.min.js",
        "libs/xml2json.min.js",
        "scripts/util/util.js",
        "scripts/util/human_readable.js",
        "scripts/data/data.js",
        "scripts/data/generate.js",
        "scripts/user/export.js",
        "scripts/user/gui.js",
        "scripts/user/download.js"
      ]
    }
  ]
}