Cursorlux - Mouse Highlighter

Cursorlux - Mouse Highlighter

A customizable mouse highlighter extension to highlight your cursor and clicks!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "2.0.0",
  "short_name": "Cursorlux",
  "name": "Cursorlux - Mouse Highlighter",
  "homepage_url": "https://github.com/joshuajadaniel/cursorlux",
  "description": "A customizable mouse highlighter extension to highlight your cursor and clicks!",
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "96": "icon96.png",
    "128": "icon128.png"
  },
  "action": {
    "default_popup": "index.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "js": [
        "foreground.js"
      ],
      "css": [
        "foreground.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "storage",
    "scripting"
  ],
  "host_permissions": [
    "<all_urls>"
  ]
}