Highlight Navigator Extension

Highlight Navigator Extension

Effortlessly search for a highlighted word or stock symbol on your favorite sites without the need to copy and paste the text.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Highlight Navigator Extension",
  "version": "1.0",
  "description": "Effortlessly search for a highlighted word or stock symbol on your favorite sites without the need to copy and paste the text.",
  "permissions": [
    "contextMenus",
    "activeTab",
    "storage"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": "./images/icon_128.png",
    "default_title": "Highlight Navigator",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "./images/icon_16.png",
    "48": "./images/icon_48.png",
    "128": "./images/icon_128.png"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}