Easily Custom Page Zoom

Easily Custom Page Zoom

Each website (or all websites) may be set with a unique zoom level easily.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "0.1",
  "manifest_version": 3,
  "offline_enabled": true,
  "name": "Easily Custom Page Zoom",
  "short_name": "custom-page-zoom",
  "permissions": [
    "storage",
    "activeTab"
  ],
  "homepage_url": "https://worldaddons.com/custom-page-zoom/",
  "description": "Each website (or all websites) may be set with a unique zoom level easily.",
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "Easily Custom Page Zoom",
    "default_popup": "source/popup/popup.html",
    "default_icon": {
      "16": "source/icons/16.png",
      "32": "source/icons/32.png",
      "48": "source/icons/48.png",
      "64": "source/icons/64.png"
    }
  },
  "content_scripts": [
    {
      "all_frames": false,
      "matches": [
        "*://*/*"
      ],
      "match_about_blank": true,
      "run_at": "document_start",
      "js": [
        "source/content_script/inject.js"
      ]
    }
  ],
  "icons": {
    "16": "source/icons/16.png",
    "32": "source/icons/32.png",
    "48": "source/icons/48.png",
    "64": "source/icons/64.png",
    "128": "source/icons/128.png"
  }
}