Rainbow.surf for Google Calendar

Rainbow.surf for Google Calendar

Merges duplicate Google Calendar events into one rainbow and colors the weekends.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "short_name": "rainbow.surf",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "version": "2.1.1",
  "content_scripts": [
    {
      "matches": [
        "https://calendar.google.com/calendar/*"
      ],
      "js": [
        "events.user.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "scripts": [
      "browser-polyfill.js",
      "background.js"
    ]
  },
  "permissions": [
    "https://calendar.google.com/*"
  ],
  "icons": {
    "32": "images/Rainbow.surf-icon-32.png",
    "48": "images/Rainbow.surf-icon-48.png",
    "64": "images/Rainbow.surf-icon-64.png",
    "128": "images/Rainbow.surf-icon-128.png",
    "256": "images/Rainbow.surf-icon-256.png"
  },
  "content_security_policy": "default-src 'self'",
  "manifest_version": 2
}