Google Calendar Scroll Disabler

Google Calendar Scroll Disabler

Disables changing of months in Google Calendar when inadvertently triggering the mouse scroll. Especially annoying when using a trackpad or Apple's Magic Mouse.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Google Calendar Scroll Disabler",
  "description": "Disables changing of months in Google Calendar when inadvertently triggering the mouse scroll. Especially annoying when using a trackpad or Apple's Magic Mouse.",
  "version": "1.1.1resigned1",
  "homepage_url": "https://github.com/apphancer/firefox-google-calendar-scroll-disabler",
  "icons": {
    "48": "icons/icon-48.png"
  },
  "permissions": [
    "https://calendar.google.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://calendar.google.com/*"
      ],
      "js": [
        "content-script.js"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{61448dc3-1420-4346-b648-5ac40f07a864}"
    }
  }
}