TredoList

TredoList

Turn Trello into a convenient todolist tool, with new list layouts and dynamic color themes

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "TredoList",
  "applications": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "description": "Turn Trello into a convenient todolist tool, with new list layouts and dynamic color themes",
  "version": "1.0.0.1",
  "author": "Olivier Cado",
  "icons": {
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "background": {
    "service_worker": "service_worker.js",
    "type": "module"
  },
  "permissions": [
    "scripting",
    "declarativeContent",
    "storage"
  ],
  "host_permissions": [
    "*://trello.com/b/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "css/layout.css",
        "css/theme-.css",
        "css/theme-bright.css",
        "css/theme-pastel.css",
        "css/theme-dark.css"
      ],
      "matches": [
        "*://trello.com/*"
      ]
    }
  ],
  "action": {
    "default_title": "Tredolist",
    "default_popup": "config.html",
    "default_icon": {
      "19": "icon48.png",
      "38": "icon48.png",
      "48": "icon48.png"
    }
  }
}