TFS+

TFS+

Enhancements to the browser interface for TFS 2013 and 2015.

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+",
  "description": "Enhancements to the browser interface for TFS 2013 and 2015.",
  "version": "0.0.7",
  "short_name": "TFS+",
  "icons": {
    "16": "images/logo16.png",
    "32": "images/logo32.png",
    "48": "images/logo48.png",
    "128": "images/logo128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/onload.js"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    "js/options.js",
    "js/popup.js",
    "js/fixes.js",
    "js/arrive-2.0.0.min.js",
    "css/theme.css",
    "css/fixes.css",
    "css/options.css",
    "images/logo19.png",
    "images/right.png",
    "images/left.png",
    "images/down.png",
    "images/up.png",
    "images/progress.gif",
    "images/bigprogress.gif",
    "images/spinner.gif",
    "images/maximize.png"
  ],
  "permissions": [
    "storage",
    "tabs"
  ],
  "options_page": "options.html",
  "browser_action": {
    "default_icon": "images/logo19.png",
    "default_popup": "popup.html"
  }
}