TextZoom

TextZoom

The best text-only zoom solution for Chrome

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "TextZoom",
  "version": "1.31",
  "manifest_version": 2,
  "minimum_chrome_version": "22",
  "default_locale": "en",
  "description": "__MSG_extDesc__",
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "options_page": "options.html",
  "permissions": [
    "<all_urls>",
    "storage",
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/common.js",
        "js/textzoom.js"
      ],
      "all_frames": true
    }
  ],
  "offline_enabled": true
}