Better Text View

Better Text View

Makes webpage text larger and readable.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Better Text View",
  "description": "Makes webpage text larger and readable.",
  "version": "5.2.2",
  "author": "Sammer",
  "permissions": [
    "tabs",
    "storage"
  ],
  "host_permissions": [
    "*://*/*",
    "file:///*",
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "js": [
        "src/pageAction_options.js",
        "src/enable.js",
        "src/options.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "match_about_blank": true
    }
  ],
  "background": {
    "service_worker": "src/background.js"
  },
  "options_ui": {
    "page": "options.html",
    "browser_style": false,
    "open_in_tab": false
  },
  "action": {
    "default_icon": {
      "128": "assets/icons/halo.png"
    },
    "default_title": "Manage Better Text View for this website",
    "default_popup": "pageAction_popup.html",
    "browser_style": true
  },
  "commands": {
    "toggle": {
      "suggested_key": {
        "default": "Ctrl+7",
        "mac": "Command+7"
      },
      "description": "Toggle Better Text View setting",
      "global": true
    }
  },
  "icons": {
    "128": "assets/icons/halo.png"
  },
  "manifest_version": 3
}