Cursors of the Harry Potter Universe

Cursors of the Harry Potter Universe

Replaces the standard cursor with Harry Potter-style cursors. Choose your magic wand and control it. Only for real wizards!

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_appName__",
  "short_name": "__MSG_shortName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "version": "1.1.1",
  "action": {
    "default_popup": "popup.html"
  },
  "icons": {
    "128": "img/icon.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "js": [
        "content_s.js"
      ],
      "matches": [
        "*://*/*"
      ],
      "all_frames": true,
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "storage"
  ]
}