MouseZoomer

MouseZoomer

Zoom IN/OUT with the mouse clicking left or right button + wheel UP/DOWN Two permissions required: TABS: To do ZOOM in the tabs :-) STORAGE: To store settings

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "MouseZoomer",
  "short_name": "MouseZoomer",
  "version": "7.1resigned1",
  "description": "Zoom IN/OUT with the mouse clicking left or right button + wheel UP/DOWN",
  "permissions": [
    "tabs",
    "storage"
  ],
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "57.0"
    }
  },
  "options_ui": {
    "page": "MouseZoomerOptions.html"
  },
  "background": {
    "scripts": [
      "MouseZoomer.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "MouseZoomerListener.js"
      ]
    }
  ]
}