ZetaMarker Lite - Web Highlighter

ZetaMarker Lite - Web Highlighter

Free Highlighter & Annotator for touch screen & Android devices. Effortless syncing of highlights and annotations across devices.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_extname__",
  "description": "__MSG_extdesc__",
  "default_locale": "en",
  "version": "2.0",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAgOkTq3Vk7svvcvwXgZfXell1YrFwhYlSTYT4QJRIBqp2wEQs36maTln2orrBvHbjCJXI6ka1nMMbHq2gBV8Gvddv49vsT3i26MN5e2oILv5OWTO1VLPsSDFwRfVuCfXRFrxRAdiZIhyE2uJ4sGZyBWdGw40WKzEQUymM7sp8HOPrdnl/HIsLzTgNT3oB4mw5XcFhumoDFuxxXW4eFXsdIPDVu5A7Buy7MXFcDsvKs9ekcYjpA0qXNSDRlcNcKnX8uy/co0IaBijuPG4KO4vIMJXunh5HWIgtgnq7TH2Zuurx6euu60+hW6Tjsmrs3dLu71QdiIxCe4zBLlvRI0DLdQIDAQAB",
  "icons": {
    "16": "icons/logo_16.png",
    "32": "icons/logo_32.png",
    "48": "icons/logo_48.png",
    "96": "icons/logo_96.png",
    "128": "icons/logo_128.png"
  },
  "options_ui": {
    "open_in_tab": true,
    "page": "pages/pages.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "icons/*"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "permissions": [
    "storage",
    "identity"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "lib/jquery.min.js",
        "content.js"
      ]
    }
  ]
}