GDC Calendar Tool

GDC Calendar Tool

Chrome Extension for adding GDC sessions to your Google Calendar in one click!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "GDC Calendar Tool",
  "version": "1.2.1",
  "description": "Chrome Extension for adding GDC sessions to your Google Calendar in one click!",
  "manifest_version": 3,
  "author": "Grimbar Interactive",
  "action": {
    "default_popup": "index.html",
    "default_title": "GDC Calendar Tool"
  },
  "permissions": [
    "identity",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://schedule.gdconf.com/session/*"
      ],
      "css": [
        "my-styles.css"
      ],
      "js": [
        "content-script.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "oauth2": {
    "client_id": "134393940605-i3s4ek84k86g33eai2kb028dql51rh4r.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/calendar.events.owned"
    ]
  },
  "options_page": "options.html",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  }
}