layout-trello-ff

layout-trello-ff

A Trello board view layout changer for Firefox - horizontal, vertical and mixed layouts.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "layout-trello-ff",
  "version": "1.2",
  "author": "Timmy Jose<[email protected]>",
  "description": "A Trello board view layout changer for Firefox - horizontal, vertical and mixed layouts",
  "icons": {
    "48": "icons/change_layout_48.png"
  },
  "permissions": [
    "tabs",
    "activeTab",
    "cookies",
    "<all_urls>"
  ],
  "background": {
    "scripts": [
      "background_scripts/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.trello.com/b/*"
      ],
      "js": [
        "content_scripts/change_page_layout.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": {
      "48": "icons/change_layout_48.png"
    },
    "default_title": "layout-trello-ff",
    "default_popup": "popup/change_layout.html"
  },
  "browser-specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  }
}