Google Calendar Guests Modify Event Default

Google Calendar Guests Modify Event Default

Enables 'Guests can modify event' setting for google calendar by default, when creating a new event. Code is on Github: https://github.com/robin-drexler/Google-Calendar-Guests-Can-Modify-Event-By-Default

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Google Calendar Guests Modify Event Default",
  "version": "0.4resigned1",
  "icons": {
    "256": "/img/icons/icon_256.png"
  },
  "description": "Enables 'Guests can modify event' setting for google calendar by default, when creating a new event.",
  "content_scripts": [
    {
      "matches": [
        "https://calendar.google.com/*",
        "https://www.google.com/calendar/*"
      ],
      "js": [
        "/js/content_script.js"
      ]
    }
  ],
  "manifest_version": 2,
  "browser_specific_settings": {
    "gecko": {
      "id": "{72b3d3fa-7001-4526-897c-d66529f2b6f5}"
    }
  }
}