Trello Enhanced Date

Trello Enhanced Date

Chrome Extension for making the Trello date reminder more customizable

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 Enhanced Date",
  "description": "Chrome Extension for making the Trello date reminder more customizable",
  "version": "1.0.1",
  "author": "Mathias Grundtvig Andreasen(MGApcDev)",
  "options_page": "pages/options.html",
  "icons": {
    "16": "/images/icon16.png",
    "32": "/images/icon32.png",
    "64": "/images/icon64.png",
    "128": "/images/icon128.png"
  },
  "browser_action": {
    "default_icon": {
      "16": "/images/icon16.png",
      "32": "/images/icon32.png",
      "64": "/images/icon64.png",
      "128": "/images/icon128.png"
    },
    "default_popup": "pages/options.html"
  },
  "permissions": [
    "https://www.trello.com/*",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://trello.com/*",
        "*://www.trello.com/*"
      ],
      "js": [
        "/scripts/vendor/jquery.min.js",
        "/scripts/basic.js",
        "/scripts/trelloDate.js"
      ]
    }
  ]
}