TFS Web Toolkit

TFS Web Toolkit

Expands HTML editors on backlog items, removes join/part notifications from team chat, and refreshes backlog views.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "TFS Web Toolkit",
  "version": "1.7",
  "manifest_version": 2,
  "description": "Expands HTML editors on backlog items, removes join/part notifications from team chat, and refreshes backlog views.",
  "permissions": [
    "storage"
  ],
  "options_page": "options.html",
  "content_scripts": [
    {
      "matches": [
        "http://*/tfs/*",
        "https://*/tfs/*"
      ],
      "js": [
        "scripts/tfs.web.toolkit.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  }
}