Auto Zoom from Width

Auto Zoom from Width

Zoom to fit the screen width.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Auto Zoom from Width",
  "version": "7.0.0.239",
  "version_name": "0.0.0.239",
  "description": "__MSG_extDescription__",
  "default_locale": "en",
  "icons": {
    "128": "/icon/icon_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "/js/zoom.js"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage",
    "tabs",
    "webNavigation"
  ],
  "action": {
    "default_icon": {
      "16": "/icon/icon_128.png"
    },
    "default_title": "Auto Zoom from Width"
  }
}