Cute Cursors - Custom Cursor for Edge

Cute Cursors - Custom Cursor for Edge

Replaces default cursor with something cute, funny and trendy. Change the usual mouse pointer to an amazing custom cursor.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_appName__",
  "short_name": "__MSG_shortName__",
  "description": "__MSG_appDesc__",
  "version": "4.0.0",
  "manifest_version": 2,
  "default_locale": "en",
  "icons": {
    "16": "assets/static/logo_16.png",
    "48": "assets/static/logo_48.png",
    "128": "assets/static/logo_128.png"
  },
  "permissions": [
    "storage",
    "unlimitedStorage",
    "tabs",
    "<all_urls>",
    "activeTab",
    "management"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "options_page": "./options.html",
  "browser_action": {
    "default_icon": "assets/static/logo_32.png",
    "default_title": "__MSG_defTitle__",
    "default_popup": "./popup.html"
  },
  "content_scripts": [
    {
      "js": [
        "js/app-site-controller.js"
      ],
      "matches": [
        "http://localhost:4200/*",
        "*://cute-cursors.com/*"
      ],
      "run_at": "document_start"
    },
    {
      "js": [
        "js/cursor-injector.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "background": {
    "scripts": [
      "./js/background.js"
    ]
  },
  "web_accessible_resources": [
    "assets/*.svg",
    "assets/*.png",
    "assets/*.css",
    "assets/*.otf"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}