Multi Find: Search and Highlight

Multi Find: Search and Highlight

Find and highlight multiple words on webpages. Count occurrences, scroll to the results and locate words with scrollbar marks.

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_man_name__",
  "default_locale": "en",
  "version": "1.70",
  "description": "__MSG_man_descript__",
  "permissions": [
    "storage",
    "webNavigation",
    "contextMenus"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*",
    "file://*/*"
  ],
  "background": {
    "service_worker": "sw.js"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "web_accessible_resources": [
    {
      "resources": [
        "multi-find-element.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/icon16.png",
      "32": "images/icon32.png",
      "48": "images/icon48.png",
      "64": "images/icon64.png",
      "128": "images/icon128.png"
    }
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+F",
        "mac": "MacCtrl+Shift+F"
      }
    },
    "toggle_ext": {
      "suggested_key": {
        "default": "Ctrl+Shift+X",
        "mac": "MacCtrl+Shift+X"
      },
      "description": "__MSG_man_highlights__"
    },
    "toggle_glow": {
      "description": "__MSG_man_softglow__"
    },
    "toggle_scroll": {
      "description": "__MSG_man_scroll__"
    },
    "toggle_diac": {
      "description": "__MSG_man_diac__"
    },
    "toggle_case": {
      "description": "__MSG_man_case__"
    },
    "add_select": {
      "description": "__MSG_man_addselect__"
    },
    "search_prev": {
      "suggested_key": {
        "default": "Ctrl+Shift+Left",
        "mac": "MacCtrl+Shift+Left"
      },
      "description": "__MSG_man_prev__"
    },
    "search_next": {
      "suggested_key": {
        "default": "Ctrl+Shift+Right",
        "mac": "MacCtrl+Shift+Right"
      },
      "description": "__MSG_man_next__"
    }
  },
  "icons": {
    "16": "images/icon16.png",
    "32": "images/icon32.png",
    "48": "images/icon48.png",
    "64": "images/icon64.png",
    "128": "images/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "file://*/*"
      ],
      "all_frames": true,
      "css": [
        "highlight.css"
      ],
      "js": [
        "content-script.js"
      ],
      "run_at": "document_end"
    }
  ]
}