Trello Extras

Trello Extras

Some extra functionality for Trello.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "icons": {
    "16": "icon-16.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "content_scripts": [
    {
      "exclude_globs": [],
      "include_globs": [
        "*"
      ],
      "css": [
        "css/index.css"
      ],
      "js": [
        "js/index.js"
      ],
      "matches": [
        "http://trello.com/*",
        "https://trello.com/*"
      ],
      "run_at": "document_end"
    }
  ],
  "browser_action": {
    "default_icon": {
      "16": "icon-16.png",
      "48": "icon-48.png",
      "128": "icon-128.png"
    },
    "default_popup": "popup.html",
    "default_title": "Trello Extras"
  },
  "name": "Trello Extras",
  "version": "1.8.6",
  "description": "Some extra functionality for Trello.",
  "author": "Barry Els <[email protected]>"
}