Google Calendar Disable Month Scroll

Google Calendar Disable Month Scroll

Disable jumping from month to month in Google Calendar when scrolling.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Google Calendar Disable Month Scroll",
  "version": "1.2.0",
  "description": "Disable jumping from month to month in Google Calendar when scrolling.",
  "icons": {
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://calendar.google.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}