Cool Cursors - Custom Cursor for Chrome

Cool Cursors - Custom Cursor for Chrome

Customize your experience of using the Chrome browser with cool free mouse cursors.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Cool Cursors - Custom Cursor for Chrome",
  "description": "Customize your experience of using the Chrome browser with cool free mouse cursors.",
  "version": "2.0.1",
  "icons": {
    "32": "logo/logo_32.png",
    "64": "logo/logo_64.png",
    "128": "logo/logo_128.png"
  },
  "action": {
    "default_icon": "logo/logo_32.png",
    "default_popup": "index.html"
  },
  "background": {
    "service_worker": "sw.js"
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "run_at": "document_start"
    }
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "permissions": [
    "storage",
    "tabs",
    "scripting"
  ]
}