Custom Cursor

Custom Cursor

Convert Mouse Pointer to Custom cursor with our chrome extension. Different colors, Super heroes and much more

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Custom Cursor",
  "version": "0.0.1",
  "description": "Convert Mouse Pointer to Custom cursor with our chrome extension. Different colors, Super heroes and much more",
  "background": {
    "service_worker": "./background.js"
  },
  "permissions": [
    "storage",
    "activeTab"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-script.js"
      ]
    }
  ],
  "author": "Aniket Rochwani",
  "short_name": "Custom Cursor",
  "action": {
    "default_popup": "index.html",
    "default_title": "Custom Cursor",
    "default_icon": {
      "16": "/images/icon-16.png",
      "32": "/images/icon-32.png",
      "64": "/images/icon-64.png",
      "128": "/images/icon-128.png"
    }
  },
  "icons": {
    "16": "/images/icon-16.png",
    "32": "/images/icon-32.png",
    "64": "/images/icon-64.png",
    "128": "/images/icon-128.png"
  }
}