Projects for Trello

Projects for Trello

Adds project labels to your Trello Boards

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Projects for Trello",
  "version": "1.4.0",
  "description": "Adds project labels to your Trello Boards",
  "browser_action": {
    "default_icon": "trello-projects-icon.png",
    "default_popup": "popup.html",
    "default_title": "Projects for Trello"
  },
  "background": {
    "scripts": [
      "lib/jquery-2.0.3.min.js",
      "lib/jquery-ui-1.10.4.custom.min.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://trello.com/*"
      ],
      "js": [
        "jquery-1.7.1.min.js",
        "trelloprojects.js",
        "trellofilter.js"
      ],
      "css": [
        "trelloprojects.css"
      ]
    }
  ],
  "manifest_version": 2,
  "permissions": [
    "storage"
  ],
  "icons": {
    "128": "trello-projects-icon.png"
  }
}