SubItUp Google Calendar Integration

SubItUp Google Calendar Integration

A simple chrome extension written in TypeScript/JavaScript that allows the importation of SubItUp Shifts into Google Calendar.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.0.5",
  "manifest_version": 3,
  "name": "SubItUp Google Calendar Integration",
  "description": "A simple chrome extension written in TypeScript/JavaScript that allows the importation of SubItUp Shifts into Google Calendar.",
  "action": {
    "default_popup": "js/index.html",
    "default_title": "SubItUp Google Calendar Integration"
  },
  "background": {
    "service_worker": "service-worker.js"
  },
  "permissions": [
    "identity",
    "storage",
    "webRequest"
  ],
  "host_permissions": [
    "https://*.subitup.com/*"
  ],
  "oauth2": {
    "client_id": "697110159929-i30ffolpoibqjnh7837si3u6paa6uieq.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/calendar"
    ],
    "response_type": "token"
  }
}