Zoomba

Zoomba

Customizable zoom increment.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Zoomba",
  "short_name": "Zoomba",
  "description": "Customizable zoom increment.",
  "version": "1.2.1",
  "author": "[email protected]",
  "browser_action": {
    "default_title": "Zoomba",
    "default_popup": "popup.html"
  },
  "options_page": "popup.html",
  "background": {
    "persistent": false,
    "scripts": [
      "common.js",
      "settings.js",
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "common.js",
        "keyboard.js",
        "content.js"
      ],
      "all_frames": false
    }
  ],
  "icons": {
    "128": "loupe128.png"
  },
  "content_security_policy": "script-src 'self'; object-src 'self';",
  "permissions": [
    "storage",
    "tabs",
    "management",
    "https://*/*",
    "http://*/*"
  ]
}