Auto Highlight

Auto Highlight

Auto Highlight is text highlighter with RegExp support

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "version": "5.3",
  "author": "Juraj Mäsiar",
  "default_locale": "en",
  "name": "__MSG_app_name__",
  "description": "__MSG_app_desc__",
  "icons": {
    "48": "48.png",
    "128": "128.png"
  },
  "background": {
    "service_worker": "background.loader.js"
  },
  "action": {
    "default_icon": {
      "128": "128.png"
    },
    "default_popup": "popup/popup.html"
  },
  "commands": {
    "toggle-highlight": {
      "suggested_key": {
        "default": "Ctrl+Shift+H"
      },
      "description": "Toggles global highlight ON / OFF"
    }
  },
  "permissions": [
    "contextMenus",
    "storage",
    "scripting",
    "alarms",
    "activeTab"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "run_at": "document_start",
      "js": [
        "content_scripts/page_loaded.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "editor/editor.css",
        "editor/editor.html",
        "editor/editor.js",
        "utils/svg/resize-corner.svg"
      ],
      "matches": [
        "<all_urls>"
      ],
      "use_dynamic_url": true
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}