Auto Zoom

Auto Zoom

This extension automatically zooms in a page with a small font for Chrome users.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Auto Zoom",
  "description": "This extension automatically zooms in a page with a small font for Chrome users.",
  "version": "1.0.0",
  "icons": {
    "128": "icon-128.png"
  },
  "browser_action": {
    "default_icon": {
      "38": "icon-active-38.png"
    }
  },
  "permissions": [
    "activeTab"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "chrome-content-script.bundle.js"
      ],
      "run_at": "document_idle",
      "all_frames": true
    }
  ],
  "background": {
    "scripts": [
      "chrome-background-script.bundle.js"
    ]
  },
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'"
}