Highlighty: Search, Find, Multi Highlight

Highlighty: Search, Find, Multi Highlight

Searching and Multi Highlighting made effortless! It's the most efficient way to find and highlight any text on the web.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Highlighty: Search, Find, Multi Highlight",
  "description": "Searching and Multi Highlighting made effortless! It's the most efficient way to find and highlight any text on the web.",
  "version": "2.2.7",
  "manifest_version": 3,
  "action": {
    "default_popup": "index.html",
    "default_title": "Highlighty"
  },
  "author": "Webmind Technologies S.R.L",
  "options_ui": {
    "page": "index.html"
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "background": {
    "service_worker": "./static/js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "./static/js/content.js"
      ]
    }
  ],
  "devtools_page": "index.html",
  "permissions": [
    "storage"
  ]
}