Export for Trello

Export for Trello

Export Trello Boards to Excel

Merlin
Additional files are visible only to premium users

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