Fix Trello Boards Width

Fix Trello Boards Width

Fix the container width of the Trello boards after latest UI update

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Fix Trello Boards Width",
  "version": "1.1.5",
  "icons": {
    "16": "img/icon16.png",
    "32": "img/icon32.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "description": "Fix the container width of the Trello boards after latest UI update",
  "author": "Luke Denton <[email protected]>",
  "content_scripts": [
    {
      "matches": [
        "http://*.trello.com/*",
        "https://*.trello.com/*"
      ],
      "css": [
        "css/style.css"
      ]
    }
  ]
}