Let guests modify Google calendar event

Let guests modify Google calendar event

This extension checks the 'Modify event' box of the 2017-era version of Google Calendar web application.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Let guests modify Google calendar event",
  "description": "This extension checks the 'Modify event' box of the 2017-era version of Google Calendar web application.",
  "version": "1.0",
  "background": {
    "scripts": [
      "letmodify.js"
    ],
    "persistent": false
  },
  "icons": {
    "32": "icon32.png",
    "64": "icon64.png"
  },
  "page_action": {
    "default_icon": "icon.png"
  },
  "permissions": [
    "declarativeContent",
    "tabs",
    "http://*/*",
    "https://*/*"
  ]
}