Trello To-do Notes

Trello To-do Notes

Turns trello cards into a handy dashboard on your desktop. It highlights urgent tasks if you provide deadlines like this: / Apr 30

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 To-do Notes",
  "description": "Turns trello cards into a handy dashboard on your desktop. It highlights urgent tasks if you provide deadlines like this: / Apr 30",
  "version": "0.9.8",
  "permissions": [
    "http://trello.com/*",
    "https://trello.com/*"
  ],
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "icon.png",
    "default_title": "Click to do the magic"
  },
  "icons": {
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://trello.com/*"
      ],
      "js": [
        "jquery.js",
        "bowser.min.js",
        "script.js",
        "majic.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "color.css"
  ]
}