SZoom - Selective Zoom

SZoom - Selective Zoom

Selective Zoom For text

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "SZoom - Selective Zoom",
  "version": "0.2",
  "description": "Selective Zoom For text",
  "manifest_version": 2,
  "browser_action": {
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "icon16.png",
    "128": "icon128.png"
  },
  "options_page": "options.html",
  "permissions": [
    "storage",
    "notifications",
    "contextMenus",
    "activeTab"
  ],
  "background": {
    "matches": [
      "<all_urls>"
    ],
    "scripts": [
      "eventpage.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "style.css"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}