Zoom Lock

Zoom Lock

This extension resets the tab/page zoom back to default if it changes

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Zoom Lock",
  "short_name": "ZoomLock",
  "description": "This extension resets the tab/page zoom back to default if it changes",
  "version": "0.1",
  "background": {
    "scripts": [
      "jquery-3.1.1.min.js",
      "background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html",
    "default_title": "ZoomLock"
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "permissions": [
    "https://www.google-analytics.com/",
    "storage",
    "activeTab",
    "tabs"
  ]
}