TFS 2015 Team Room Notifications

TFS 2015 Team Room Notifications

This extension shows a desktop notification when a message is received in tfs team room

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 2015 Team Room Notifications",
  "description": "This extension shows a desktop notification when a message is received in tfs team room",
  "version": "1.40",
  "author": "Antoine Granpré Molière",
  "browser_action": {
    "default_icon": "favicon.ico"
  },
  "permissions": [
    "activeTab",
    "notifications",
    "tabs",
    "*://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "chatNotifier.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  }
}