Cursorland - Custom Cursor for Chrome

Cursorland - Custom Cursor for Chrome

Change your cursor to a custom one with our large collection of cursors from popular characters!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_app_name__",
  "description": "__MSG_app_description__",
  "version": "2.0.6",
  "manifest_version": 3,
  "default_locale": "en",
  "background": {
    "service_worker": "/resources/js/background.js"
  },
  "content_scripts": [
    {
      "js": [
        "/resources/js/content.js"
      ],
      "matches": [
        "*://*/*"
      ],
      "all_frames": true,
      "run_at": "document_start"
    }
  ],
  "action": {
    "default_popup": "popup.html",
    "default_title": "__MSG_app_popup__",
    "default_icon": {
      "16": "/resources/images/icons/16x16.png",
      "32": "/resources/images/icons/32x32.png",
      "48": "/resources/images/icons/48x48.png",
      "64": "/resources/images/icons/64x64.png",
      "256": "/resources/images/icons/256x256.png"
    }
  },
  "icons": {
    "16": "/resources/images/icons/16x16.png",
    "32": "/resources/images/icons/32x32.png",
    "48": "/resources/images/icons/48x48.png",
    "64": "/resources/images/icons/64x64.png",
    "128": "/resources/images/icons/128x128.png",
    "256": "/resources/images/icons/256x256.png"
  },
  "permissions": [
    "storage",
    "tabs",
    "activeTab",
    "scripting"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/resources/images/*",
        "/resources/js/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "*://*.cursor-land.com/*",
      "*://*.cursor.style/*"
    ]
  }
}