Trello Archiver

Trello Archiver

Add the ability to visually archive some trello organization's organizations

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Add the ability to visually archive some trello organization's organizations",
  "manifest_version": 2,
  "name": "Trello Archiver",
  "version": "1.1",
  "applications": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "icons": {
    "48": "assets/trello-archiver-48.png",
    "128": "assets/trello-archiver-128.png"
  },
  "permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.trello.com/*"
      ],
      "js": [
        "jquery-2.1.4.min.js",
        "archiver.js"
      ]
    }
  ]
}