Trello-Office

Trello-Office

project management and time tracking based on trello

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Trello-Office",
  "description": "project management and time tracking based on trello",
  "version": "1.3",
  "manifest_version": 2,
  "permissions": [
    "activeTab"
  ],
  "browser_action": {
    "default_icon": "icon.png"
  },
  "background": {
    "scripts": [
      "app.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://trello.com/*"
      ],
      "js": [
        "jquery-2.0.3.js",
        "trello-script.js"
      ]
    }
  ],
  "icons": {
    "128": "icon_128.png"
  }
}