Search Highlighter

Search Highlighter

Search and highlight keywords in any webpage via toolbar popup.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "0.1.4",
  "manifest_version": 3,
  "offline_enabled": true,
  "name": "Search Highlighter",
  "homepage_url": "https://mybrowseraddon.com/search-highlighter.html",
  "description": "Search and highlight keywords in any webpage via toolbar popup.",
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage",
    "activeTab",
    "scripting"
  ],
  "action": {
    "default_title": "Search Highlighter",
    "default_popup": "data/popup/popup.html",
    "default_icon": {
      "16": "data/icons/16.png",
      "32": "data/icons/32.png",
      "48": "data/icons/48.png",
      "64": "data/icons/64.png"
    }
  },
  "commands": {
    "search-highlighter": {
      "description": "Search Highlighter",
      "suggested_key": {
        "mac": "Alt+Shift+F",
        "default": "Alt+Shift+F"
      }
    }
  },
  "icons": {
    "16": "data/icons/16.png",
    "32": "data/icons/32.png",
    "48": "data/icons/48.png",
    "64": "data/icons/64.png",
    "128": "data/icons/128.png"
  }
}