Ferrari-Cursor

Ferrari-Cursor

Change your regular default cursor to a new custom Ferrari one. Show your personality with a bright and beautiful mouse pointer on…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "action": {
    "default_icon": {
      "16": "assets/icons/logo16.png",
      "32": "assets/icons/logo32.png",
      "128": "assets/icons/logo128.png"
    }
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "js": [
        "app.js"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "content_security_policy": {
    "isolated_world": "script-src 'self' 'unsafe-eval'; object-src 'self'"
  },
  "default_locale": "en",
  "host_permissions": [
    "*://*/*"
  ],
  "icons": {
    "16": "assets/icons/logo16.png",
    "32": "assets/icons/logo32.png",
    "128": "assets/icons/logo128.png"
  },
  "manifest_version": 3,
  "name": "Ferrari-Cursor",
  "permissions": [
    "storage"
  ],
  "version": "0.0.1",
  "web_accessible_resources": [
    {
      "matches": [
        "*://*/*"
      ],
      "resources": [
        "assets/*.*"
      ]
    }
  ]
}