Trello Card Dependencies V2.0

Trello Card Dependencies V2.0

Modification of https://chrome.google.com/webstore/detail/trello-card-dependencies/ddhnhdoghhfoeceiohphm

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Trello Card Dependencies V2.0",
  "description": "Modification of https://chrome.google.com/webstore/detail/trello-card-dependencies/ddhnhdoghhfoeceiohphm",
  "version": "2.2",
  "permissions": [
    "http://trello.com/b*",
    "https://trello.com/b*",
    "tabs",
    "storage"
  ],
  "web_accessible_resources": [
    "index.html",
    "icon.png",
    "inline.plugin.js",
    "https://ssl.google-analytics.com/ga.js"
  ],
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "content_scripts": [
    {
      "matches": [
        "https://trello.com/*"
      ],
      "js": [
        "lib/jquery.js",
        "lib/inline.plugin.js",
        "lib/d3.v3.js",
        "lib/linq.js",
        "trello/transformer.js",
        "inVis.js",
        "trello/TrelloDepView.js",
        "trello/client.js"
      ]
    }
  ]
}