Trello List Wizard

This extension adds more functionality to your Trello boards
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "name": "Trello List Wizard",
  "short_name": "Trello List Wizard",
  "description": "This extension adds more functionality to your Trello boards",
  "author": "Pavlo Matsura",
  "content_scripts": [
    {
      "css": [
        "trello-wizard.css"
      ],
      "js": [
        "jquery.js",
        "trello-wizard-fn.js",
        "trello-wizard-class.js",
        "trello-wizard-requests.js",
        "trello-wizard.js",
        "notifications.js"
      ],
      "matches": [
        "https://trello.com/*",
        "https://webxid.net/*"
      ]
    }
  ],
  "manifest_version": 2,
  "update_url": "http://clients2.google.com/service/update2/crx",
  "version": "1.1.2",
  "browser_action": {
    "default_icon": {
      "16": "icon-49.png",
      "38": "icon-49.png",
      "128": "icon-128.png"
    },
    "default_title": "Trello List Wizard",
    "default_popup": "trello-wizard.html"
  },
  "web_accessible_resources": [
    "icon-128.png",
    "beta-theme.css",
    "trello-theme.css"
  ],
  "permissions": [
    "tabs",
    "activeTab",
    "https://webxid.net/*",
    "https://api.webxid.net/*"
  ],
  "icons": {
    "16": "icon-49.png",
    "128": "icon-128.png"
  },
  "content_security_policy": "script-src 'self' https://www.google.com; object-src 'self'"
}