Add to gCal

Add to gCal

Parses text and adds an event to a user's Google Calendar.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Add to gCal",
  "version": "3.7.6",
  "description": "Parses text and adds an event to a user's Google Calendar.",
  "manifest_version": 2,
  "browser_action": {
    "default_title": "Add event",
    "default_popup": "index.html",
    "default_icon": "calendar-icon.png"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+F"
      }
    }
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "icons": {
    "128": "calendar-icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "oauth2": {
    "client_id": "522971550267-3c7arkglkdqd634uero2099obf4f5v50.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/calendar.readonly",
      "https://www.googleapis.com/auth/calendar.events"
    ]
  },
  "permissions": [
    "identity"
  ],
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEArrdZ5eF35zTRwIiWfoowMWUqDf/247BWn4CqxhVERCT9r5Y76UUJPAieJiWQUIAwFX+u90pOCPB1pAIcpe2aB1o/BUlKGJpY0DAHRsJutE3WfbEvhNrnLLyszPPbVbg0Phi4Dp8GJjuUVtmbBde6eDq7MZISTzzDxicdDGPAOpWP+f0c1fD5dZ76HsyI+50N8kBN/f21cBoCeL281YZ5CwimPq8Fg0bY7dlR8AY7Qz0Jha6S3NEDRxGAxYvxvVjlUIFr0YseKVOn1ccIky9Xk7quy9RQJrgHaYqdp0Wcex4d24jYsW5s1GiWpok20FaUJZZjc9RzJR1rbP0/qECXAwIDAQAB"
}