Google Calendar No Scroll

Google Calendar No Scroll

Disables mouse wheel scrolling in Google Calender, the new layout.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Google Calendar No Scroll",
  "version": "1.0.0",
  "description": "Disables mouse wheel scrolling in Google Calender, the new layout.",
  "content_scripts": [
    {
      "matches": [
        "*://calendar.google.com/calendar/*"
      ],
      "run_at": "document_idle",
      "all_frames": false,
      "js": [
        "mutation-summary.min.js",
        "main.js"
      ]
    }
  ]
}