Ctrl Zoom

Ctrl Zoom

Ctrl + touchpad scroll to zoom

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Ctrl Zoom",
  "version": "1.5",
  "description": "Ctrl + touchpad scroll to zoom",
  "homepage_url": "https://github.com/hempe/ctrlZoom",
  "author": "hempe",
  "short_name": "ctrlZoom",
  "manifest_version": 3,
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [],
      "js": [
        "js/contentScript.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "resources": [
        "js/popup.js",
        "js/ctrlZoom.js"
      ]
    }
  ],
  "options_page": "options.html",
  "background": {
    "service_worker": "js/background.js",
    "type": "module"
  },
  "icons": {
    "16": "images/icon_16.png",
    "32": "images/icon_32.png",
    "48": "images/icon_48.png",
    "128": "images/icon_128.png"
  },
  "action": {
    "default_icon": {
      "16": "images/icon_16.png",
      "32": "images/icon_32.png",
      "48": "images/icon_48.png",
      "128": "images/icon_128.png"
    },
    "default_popup": "options.html",
    "default_title": "ChromiePop"
  }
}