Create Google Calendar Event

Create Google Calendar Event

Creates an event in your Google calendar based on selected text.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Create Google Calendar Event",
  "description": "Creates an event in your Google calendar based on selected text.",
  "version": "1.0",
  "manifest_version": 2,
  "background": {
    "scripts": [
      "apiKey.js",
      "background.js",
      "dateUtils.js",
      "dateTextProcessor.js",
      "unitTests.js"
    ]
  },
  "icons": {
    "16": "SendToGoogCalIcon.png",
    "48": "SendToGoogCalIcon.png",
    "128": "SendToGoogCalIcon.png"
  },
  "oauth2": {
    "client_id": "798578276973-kkcubuitpb1iaorln224ogtsdgn7j3cm.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/calendar.events"
    ]
  },
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAkzDZYFK0FlWr95D7FlDgQGxJJeKjni2x87zMR3XZ2VKJ/t1dfJjpMYh8BUK7J0fSdqprbIKQaOE8wrzGurrW3W0MStl8+y63ABVcroU2xpqYpV26xJNkfA+5/tVbWoc+/3rWq4G0+7LXH4Bx+FdS+rs4A3FUH+LKBM6hXysp9LGP41RgOKqGo2WSd6CyvUzXpcLYhIozKCTpHCov9GGxzH0rxxSJG1tje6gkAGJrXUkjovrp9batT3RP0u/pmapltDg73z0F9c0YGDErc3PlqxW44t3O7qvnO+MzCSF6rQffRdldNpBUb0T9FzLN9apKEHlUafIvszbBBZizLA3YuQIDAQAB",
  "permissions": [
    "identity",
    "contextMenus"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}