Awesome Custom Cursor

Awesome Custom Cursor

Awesome Custom Cursor replaces your default boring cursor with 100+ fun and cool customized cursors.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": {
      "32": "assets/icons/icon32.png",
      "48": "assets/icons/icon48.png",
      "96": "assets/icons/icon96.png",
      "128": "assets/icons/icon128.png"
    },
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "libs/jquery.js",
        "libs/cursor.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "description": "Awesome Custom Cursor replaces your default boring cursor with 100+ fun and cool customized cursors.",
  "icons": {
    "32": "assets/icons/icon32.png",
    "48": "assets/icons/icon48.png",
    "96": "assets/icons/icon96.png",
    "128": "assets/icons/icon128.png"
  },
  "manifest_version": 3,
  "minimum_chrome_version": "88",
  "name": "Awesome Custom Cursor",
  "options_ui": {
    "open_in_tab": false,
    "page": "options.html"
  },
  "permissions": [
    "tabs",
    "storage",
    "contextMenus"
  ],
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "3.1",
  "web_accessible_resources": [
    {
      "resources": [
        "assets/*.*"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "libs/*.*"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "cursors/*.*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}