FlexyTrello

FlexyTrello

Make Trello Lists Resizable

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "FlexyTrello",
  "description": "Make Trello Lists Resizable",
  "version": "1.3.19",
  "icons": {
    "16": "img/resize16.png",
    "48": "img/resize48.png",
    "128": "img/resize128.png"
  },
  "author": "Martin Mouterde",
  "background": {
    "service_worker": "scripts/background.js"
  },
  "content_scripts": [
    {
      "js": [
        "lib/jquery-1.11.2.js",
        "lib/jquery.waituntilexists.js",
        "scripts/FlexyTrello.js"
      ],
      "matches": [
        "https://trello.com/b*"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "img/resize.png",
        "img/resize16.png",
        "img/resize48.png",
        "img/resize128.png",
        "lib/HashSearch.js",
        "lib/jquery.waituntilexists.js",
        "lib/jquery-1.11.2.js",
        "lib/trello_client.js",
        "settings/css/style.css",
        "settings/js/settings.js",
        "settings/index.html",
        "style/override.css",
        "scripts/background.js",
        "scripts/FlexyTrello.js",
        "scripts/key.js"
      ],
      "matches": [
        "https://trello.com/*"
      ]
    }
  ],
  "options_page": "settings/index.html",
  "permissions": [
    "tabs",
    "declarativeContent"
  ],
  "host_permissions": [
    "https://trello.com/*"
  ],
  "action": {
    "default_icon": "img/resize.png",
    "default_title": "FlexyTrello"
  },
  "manifest_version": 3
}