Better Speedy Meetings for Google Calendar

Better Speedy Meetings for Google Calendar

Create meetings in Google Calendar that start later, rather than end earlier.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Better Speedy Meetings for Google Calendar",
  "description": "Create meetings in Google Calendar that start later, rather than end earlier.",
  "version": "0.1",
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/cal-16.png",
      "32": "images/cal-32.png",
      "48": "images/cal-48.png",
      "128": "images/cal-128.png"
    }
  },
  "icons": {
    "16": "images/cal-16.png",
    "32": "images/cal-32.png",
    "48": "images/cal-48.png",
    "128": "images/cal-128.png"
  },
  "permissions": [
    "storage"
  ],
  "background": {
    "service_worker": "service-worker.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://calendar.google.com/*"
      ],
      "js": [
        "content-script.js"
      ]
    }
  ]
}