Browser Zoomer

Browser Zoomer

Keeps the browser zoomed in when you go to different pages.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Browser Zoomer",
  "description": "Keeps the browser zoomed in when you go to different pages.",
  "version": "1.0",
  "permissions": [
    "tabs",
    "storage",
    "http://*/*",
    "https://*/*"
  ],
  "background": {
    "scripts": [
      "jquery.js"
    ]
  },
  "browser_action": {
    "default_title": "Text that appears when you hover your moust over the icon",
    "default_icon": "icons/icon32.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "jquery.js",
        "start.js",
        "zoom-set.js"
      ],
      "run_at": "document_start"
    }
  ],
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "64": "icons/icon64.png",
    "96": "icons/icon96.png",
    "128": "icons/icon128.png"
  },
  "manifest_version": 2
}