No Mouse Wheel Zoom

No Mouse Wheel Zoom

Prevents Ctrl + Scroll zoom

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "version": "2.0.0",
  "short_name": "No Mouse Wheel Zoom",
  "name": "No Mouse Wheel Zoom",
  "description": "Prevents Ctrl + Scroll zoom",
  "browser_action": {
    "default_title": "CRE",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentScript.bundle.js"
      ]
    }
  ],
  "icons": {
    "16": "img/icon-16.png",
    "48": "img/icon-48.png",
    "128": "img/icon-128.png"
  },
  "options_page": "options.html",
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}