UMD GCal Schedule Importer

UMD GCal Schedule Importer

Imports your UMD class schedule to 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": "UMD GCal Schedule Importer",
  "description": "Imports your UMD class schedule to Google Calendar.",
  "version": "4.0",
  "browser_action": {
    "default_icon": "icons/icon19.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "permissions": [
    "tabs",
    "<all_urls>",
    "https://ajax.googleapis.com/*",
    "https://www.provost.umd.edu/calendar/*",
    "https://apis.google.com/*"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com https://www.google-analytics.com https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.8/js/materialize.min.js; object-src 'self'"
}