Trello Quick Export Button

Trello Quick Export Button

Adds an 'Export JSON' button to the header menu of Trello boards.

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 Quick Export Button",
  "version": "1.0.0",
  "description": "Adds an 'Export JSON' button to the header menu of Trello boards.",
  "icons": {
    "128": "trello-exportButton.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://trello.com/b/*"
      ],
      "js": [
        "trello-exportButton.js"
      ]
    }
  ]
}