Cursorly - Fun Custom Cursors for Chrome™

Cursorly - Fun Custom Cursors for Chrome™

Change your boring default cursor to a fun custom cursor from our ever growing collection.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "https://cursorly.io/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_start",
      "all_frames": false
    }
  ],
  "icons": {
    "16": "16.png",
    "48": "48.png",
    "128": "128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "background": {
    "service_worker": "service_worker.js"
  },
  "permissions": [
    "storage",
    "alarms",
    "notifications"
  ],
  "name": "Cursorly - Fun Custom Cursors for Chrome™",
  "version": "1.1.0",
  "description": "Change your boring default cursor to a fun custom cursor from our ever growing collection.",
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "16.png",
      "48": "48.png",
      "128": "128.png"
    }
  }
}