Trello Horizontal Lists

Trello Horizontal Lists

Turns Trello Lists Horizontal so they can be used for vertical comparisons.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Trello Horizontal Lists",
  "version": "1.7",
  "description": "Turns Trello Lists Horizontal so they can be used for vertical comparisons.",
  "author": "Jordan Walsh ([email protected])",
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "css": [
        "styles.css"
      ],
      "js": [
        "scripts.js"
      ],
      "matches": [
        "https://trello.com/*"
      ]
    }
  ],
  "icons": {
    "16": "logo.png",
    "48": "logo.png",
    "128": "logo.png"
  }
}