Print TFS_2015 Work Items

Print TFS_2015 Work Items

This extension allows you to print TFS 2015 Work Items right from your Chrome.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Print TFS_2015 Work Items",
  "description": "This extension allows you to print TFS 2015 Work Items right from your Chrome.",
  "version": "1.2.5",
  "page_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html",
    "default_title": "Print your tasks!"
  },
  "icons": {
    "48": "icon.png",
    "128": "icon.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "activeTab",
    "tabs",
    "declarativeContent"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "print.js",
        "jquery-2.1.3.min.js"
      ],
      "css": [
        "progress.css"
      ]
    }
  ]
}