Desktop for Chrome

Desktop for Chrome

A Chrome dashboard that looks like your work station

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Desktop for Chrome",
  "description": "A Chrome dashboard that looks like your work station",
  "version": "1.1.2",
  "icons": {
    "128": "src/img/icons/desktop128.png"
  },
  "permissions": [
    "geolocation",
    "identity",
    "storage"
  ],
  "chrome_url_overrides": {
    "newtab": "src/index.html"
  },
  "content_security_policy": "script-src 'self' https://*.google.com 'unsafe-eval'; object-src 'self'",
  "background": {
    "scripts": [
      "src/js/calendar.js"
    ]
  },
  "oauth2": {
    "client_id": "966242545928-bt256f814gr0gmkcpjiisrshndsscqvs.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/calendar.readonly"
    ]
  }
}