Plan - Calendar & Tasks

Plan - Calendar & Tasks

The beautiful new tab page with your calendars and tasks.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Plan - Calendar & Tasks",
  "short_name": "Plan",
  "description": "The beautiful new tab page with your calendars and tasks.",
  "version": "1.3.1",
  "author": "Plan Inc.",
  "browser_action": {
    "default_title": "Open Plan",
    "default_icon": {
      "16": "images/logo-16x16.png",
      "32": "images/logo-32x32.png",
      "48": "images/logo-48x48.png",
      "128": "images/logo-128x128.png"
    }
  },
  "chrome_url_overrides": {
    "newtab": "index.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "storage"
  ],
  "optional_permissions": [
    "geolocation"
  ],
  "host_permissions": [
    "https://*.getplan.co/"
  ],
  "icons": {
    "16": "images/logo-16x16.png",
    "32": "images/logo-32x32.png",
    "48": "images/logo-48x48.png",
    "128": "images/logo-128x128.png"
  },
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "web_accessible_resources": [
    "fonts/*.ttf",
    "fonts/*.otf",
    "fonts/*.eot",
    "fonts/*.woff",
    "fonts/*.jpeg",
    "*.svg"
  ]
}