TFS Colorizer

TFS Colorizer

This allows you to customize the colors of items on a TFS board depending on their content.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "TFS Colorizer",
  "short_name": "TFS Colorizer",
  "description": "This allows you to customize the colors of items on a TFS board depending on their content.",
  "version": "1.4",
  "author": "Entropa Software Ltd.",
  "homepage_url": "http://www.dogschasingsquirrels.com",
  "icons": {
    "16": "icon_16.png",
    "19": "icon_19.png",
    "32": "icon_32.png",
    "48": "icon_48.png",
    "128": "icon_128.png"
  },
  "permissions": [
    "tabs",
    "storage"
  ],
  "options_page": "options.html",
  "content_scripts": [
    {
      "matches": [
        "*://*/tfs/*/*board*"
      ],
      "css": [
        "style.css"
      ],
      "js": [
        "jquery-2.1.0.min.js",
        "storage.js",
        "script.js"
      ]
    }
  ]
}