Fun Cursors

Fun Cursors

Replaces the standard mouse cursor in the browser.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Fun Cursors",
  "description": "Replaces the standard mouse cursor in the browser.",
  "version": "1.0.0",
  "browser_action": {
    "default_title": "Click to open Fun Cursors.",
    "default_icon": {
      "128": "img/icon.png"
    },
    "default_popup": "popup.html"
  },
  "icons": {
    "128": "img/icon.png"
  },
  "content_scripts": [
    {
      "js": [
        "app.js",
        "m.js"
      ],
      "matches": [
        "*://*/*"
      ],
      "all_frames": true,
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "storage"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}