Custom Cursors for Chrome

Custom Cursors for Chrome

Enhance your Chrome experience with custom cursor. Give your mouse cursor a unique touch by replacing it with a custom cursor.

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.8",
  "name": "__MSG_name__",
  "short_name": "__MSG_name__",
  "description": "__MSG_desc__",
  "default_locale": "en",
  "action": {
    "default_icon": "assets/static/logo_32.png",
    "default_title": "__MSG_title__",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "js": [
        "cursor-injector.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "run_at": "document_start"
    },
    {
      "js": [
        "content_site.js"
      ],
      "matches": [
        "https://cursorstore.com/*",
        "https://staging.cursorstore.com/*"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "img/*",
        "resources/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "options_page": "./options.html",
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "tabs",
    "activeTab",
    "storage",
    "scripting"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "icons": {
    "16": "assets/static/logo_16.png",
    "48": "assets/static/logo_48.png",
    "128": "assets/static/logo_128.png"
  }
}