ReminderCall Chrome Ext.

ReminderCall Chrome Ext.

Appointment Reminders For Google Calendar

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_google_calendar_extension_name__",
  "description": "__MSG_google_calendar_extension_desc__",
  "version": "1.0.6",
  "default_locale": "en",
  "icons": {
    "16": "icons/rsi_icon_32.png",
    "96": "icons/rsi_icon_192.png"
  },
  "permissions": [
    "contextMenus",
    "identity",
    "https://account.remindercall.com/*",
    "storage"
  ],
  "oauth2": {
    "client_id": "617382915678-u2jnnjmt7vhfu0r76utejubo2at2k993.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/calendar",
      "https://www.googleapis.com/auth/contacts"
    ]
  },
  "content_security_policy": "script-src 'self' https://calendar.google.com; object-src 'self'",
  "background": {
    "scripts": [
      "lib/jstz-1.0.4.min.js",
      "lib/jquery.min.js",
      "lib/moment+langs.min.js",
      "constants.js",
      "options.js",
      "utils.js",
      "feeds.js",
      "scheduler.js",
      "background.js"
    ]
  },
  "options_page": "options.html",
  "browser_action": {
    "default_icon": {
      "32": "icons/rsi_icon_32.png"
    },
    "default_title": "__MSG_google_calendar_extension_name__",
    "default_popup": "browser_action.html"
  }
}