CursorSpin

CursorSpin

Makes the cursor spin round and round, a small project to annoy friends and family.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "CursorSpin",
  "description": "Makes the cursor spin round and round, a small project to annoy friends and family.",
  "version": "1.6",
  "manifest_version": 3,
  "permissions": [
    "storage"
  ],
  "action": {
    "default_icon": {
      "32": "images/icon32.png",
      "64": "images/icon64.png",
      "128": "images/icon128.png"
    },
    "default_title": "CursorSpin Settings",
    "default_popup": "popup/popup.html"
  },
  "icons": {
    "32": "images/icon32.png",
    "64": "images/icon64.png",
    "128": "images/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*/"
      ],
      "js": [
        "main.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "images/cur.png"
      ]
    }
  ]
}