Trello Grids

Trello Grids

Custom Trello Lists, Grids, and Cards.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Trello Grids",
  "description": "Custom Trello Lists, Grids, and Cards.",
  "version": "1.1",
  "author": "Izzy Haimoura",
  "icons": {
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "*://trello.com/b/*",
    "tabs",
    "storage"
  ],
  "web_accessible_resources": [
    "css/layout.css"
  ],
  "page_action": {
    "default_title": "List Layouts for Trello",
    "default_popup": "popup.html"
  },
  "commands": {
    "_execute_page_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+L",
        "mac": "MacCtrl+Shift+L"
      }
    }
  }
}