Examine source code of layout-trello-ff

Inspect and view changes in layout-trello-ff source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "layout-trello-ff",
  "version": "1.2",
  "author": "Timmy Jose<zoltan.jose@gmail.com>",
  "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": "foo@bar.com"
    }
  }
}