VSTS Build Status

VSTS Build Status

This is purely alpha at this moment. The purpose of this extension is to keep you aware about your vsts builds in the browser.…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "VSTS Build Status",
  "description": "",
  "version": "1.1.2",
  "permissions": [
    "alarms",
    "tabs",
    "storage",
    "*://*.visualstudio.com/*"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://*.googleapis.com https://code.getmdl.io/; object-src 'self'",
  "browser_action": {
    "default_icon": {
      "16": "green.png"
    },
    "default_title": "VSTS Builds",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "app.js"
    ]
  }
}