Cursor style - custom cursor for your browser

Cursor style - custom cursor for your browser

Cool, cute and funny cursors for Chrome™, choose from hundreds of options.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_app_name__",
  "version": "4.1.1",
  "default_locale": "en",
  "description": "__MSG_app_description__",
  "background": {
    "service_worker": "js/background/init.js"
  },
  "content_scripts": [
    {
      "js": [
        "js/content/main.js"
      ],
      "matches": [
        "*://*/*"
      ],
      "all_frames": true,
      "run_at": "document_start"
    }
  ],
  "icons": {
    "16": "/icons/icon_16.png",
    "32": "/icons/icon_32.png",
    "48": "/icons/icon_48.png",
    "64": "/icons/icon_48.png",
    "128": "/icons/icon_128.png",
    "256": "/icons/icon_256.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_title": "__MSG_app_popup__",
    "default_icon": {
      "16": "/icons/icon_16.png",
      "32": "/icons/icon_32.png",
      "48": "/icons/icon_48.png",
      "128": "/icons/icon_128.png"
    }
  },
  "permissions": [
    "storage",
    "tabs",
    "scripting"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/resources/*",
        "/js/content/main.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "*://*.cursor.style/*"
    ]
  }
}