Selection Highlighter

Selection Highlighter

Highlight occurrences of selected text, with or without a keypress.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Selection Highlighter",
  "version": "3.1.0",
  "description": "Highlight occurrences of selected text, with or without a keypress.",
  "content_scripts": [
    {
      "all_frames": true,
      "run_at": "document_end",
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content_script/main.js"
      ]
    }
  ],
  "action": {
    "default_icon": "images/icon.png",
    "default_title": "Selection Highlighter",
    "default_popup": "popup/index.html"
  },
  "icons": {
    "1024": "images/icon.png"
  },
  "permissions": [
    "storage"
  ]
}