TaskCrusher for Trello

TaskCrusher for Trello

TaskCrusher lets you hire freelances from Toptal and Upwork directly from Trello

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "TaskCrusher for Trello",
  "description": "TaskCrusher lets you hire freelances from Toptal and Upwork directly from Trello",
  "version": "1.3",
  "background": {
    "persistent": false,
    "scripts": [
      "js/jquery-2.2.3.min.js",
      "background/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://trello.com/*"
      ],
      "js": [
        "js/jquery-2.2.3.min.js",
        "content/trello/buttons.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "content/*",
    "popup/*"
  ],
  "browser_action": {
    "default_icon": "favicon-96x96.png",
    "default_popup": "popup/index/index.html"
  },
  "permissions": [
    "storage",
    "tabs",
    "webNavigation",
    "notifications",
    "*://api.taskcrusher.co/*",
    "http://taskcrusher.co/*"
  ]
}