Beautify for Trello

Beautify for Trello

Add colors, background images and more to your Trello boards

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Beautify for Trello",
  "description": "Add colors, background images and more to your Trello boards",
  "homepage_url": "http://www.mindofmoses.com/blog/customize-your-trello-boards-with-beautify",
  "version": "1.4",
  "permissions": [
    "tabs",
    "https://trello.com/board/*",
    "unlimitedStorage"
  ],
  "page_action": {
    "default_icon": {
      "19": "images/logo_small.png",
      "38": "images/logo_big.png"
    },
    "default_title": "Beautify for Trello"
  },
  "icons": {
    "16": "images/app_logo_tiny.png",
    "48": "images/app_logo_small.png",
    "128": "images/app_logo_large.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "web_accessible_resources": [
    "images/app_logo.gif",
    "images/arches.png",
    "images/twitter_newbird_white.png",
    "arrow.gif",
    "cross.gif",
    "hs.png",
    "hv.png"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://trello.com/*"
      ],
      "js": [
        "jscolor.js",
        "angular.min.js",
        "control_ui.js",
        "inject_ui.js"
      ],
      "css": [
        "beautify_trello.css"
      ],
      "run_at": "document_end"
    }
  ]
}