Swimlanes for Trello

Swimlanes for Trello

Support arranging Trello lists into horizontal swimlanes. To start a new swimlane, just add | or a swimmer emoji to a list's header.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Swimlanes for Trello",
  "description": "Support arranging Trello lists into horizontal swimlanes. To start a new swimlane, just add | or a swimmer emoji to a list's header.",
  "version": "1.7",
  "author": "Jeff Yaus",
  "icons": {
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "*://trello.com/b/*",
    "tabs",
    "storage"
  ],
  "web_accessible_resources": [
    "css/trello-swimlanes.css"
  ],
  "page_action": {
    "default_title": "Swimlanes for Trello"
  },
  "commands": {
    "_execute_page_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+S",
        "mac": "MacCtrl+Shift+S"
      }
    }
  }
}