Google Calendar Scroll Disabler

Google Calendar Scroll Disabler

A link is worth more than 1000 words: https://productforums.google.com/forum/#!topic/calendar/O2fpZq36otA This Chrome Extension…

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 Scroll Disabler",
  "version": "0.5",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://calendar.google.com/calendar/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}