Web Highlights - PDF & Web Highlighter

Web Highlights - PDF & Web Highlighter

Productivity Highlighter for any Website or PDF. Free and easy to use without signing up.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Web Highlights - PDF & Web Highlighter",
  "description": "Productivity Highlighter for any Website or PDF. Free and easy to use without signing up.",
  "short_name": "Web Highlights",
  "version": "9.3.11",
  "manifest_version": 3,
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "node_modules/@webhighlights/extension-components/dist/content.js"
      ]
    }
  ],
  "icons": {
    "16": "./assets/marker-icon.png",
    "128": "./assets/marker-icon.png"
  },
  "action": {},
  "background": {
    "service_worker": "node_modules/@webhighlights/extension-components/dist/background.js",
    "type": "module"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "pdf/*"
      ],
      "matches": [
        "https://web-highlights.com/*",
        "https://pre.web-highlights.com/*",
        "http://localhost:8081/*"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "contextMenus",
    "storage",
    "scripting"
  ],
  "host_permissions": [
    "http://*/",
    "https://*/",
    "*://*/*"
  ],
  "commands": {
    "highlight-text": {
      "suggested_key": {
        "default": "Alt+S",
        "mac": "Alt+S"
      },
      "description": "Highlight Text"
    },
    "toggle-sidebar": {
      "suggested_key": {
        "default": "Alt+W",
        "mac": "Alt+W"
      },
      "description": "Toggle Sidebar"
    },
    "toggle-settings": {
      "suggested_key": {
        "default": "Alt+Comma",
        "mac": "Alt+Comma"
      },
      "description": "Open Settings"
    },
    "toggle-bookmark": {
      "suggested_key": {
        "default": "Alt+B",
        "mac": "Alt+B"
      },
      "description": "Save Bookmark"
    }
  }
}