TFS PBI Print

TFS PBI Print

Printing a TFS PBI

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "TFS PBI Print",
  "version": "0.0.3",
  "description": "Printing a TFS PBI",
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "page_action": {
    "default_title": "Print a PBI",
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "background": {
    "persistent": false,
    "scripts": [
      "js/background.js"
    ]
  },
  "content_security_policy": "script-src 'self'; img-src *; object-src 'self'",
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "js/get_pbi_info.js"
      ],
      "run_at": "document_idle",
      "all_frames": false
    }
  ],
  "permissions": [
    "tabs"
  ]
}