Trello Lists Manager

Trello Lists Manager

Allow to hide and show lists on your Trello boards.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.0.0",
  "content_scripts": [
    {
      "all_frames": true,
      "css": [
        "style.css"
      ],
      "js": [
        "js/jquery-1.11.1.min.js",
        "js/jquery.ba-throttle-debounce.min.js",
        "js/jquery.waituntilexists.min.js",
        "js/mutation-summary.js",
        "js/list-manager.js"
      ],
      "matches": [
        "*://trello.com/*"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "*://trello.com/",
    "storage"
  ],
  "icons": {
    "48": "icons/tlm48.png",
    "128": "icons/tlm128.png"
  },
  "manifest_version": 2,
  "name": "Trello Lists Manager",
  "short_name": "TLM",
  "description": "Allow to hide and show lists on your Trello boards.",
  "author": "Michael Mollard"
}