Custom Cursor for Edge

Custom Cursor for Edge

Revamp Your Browsing with Custom Cursors for Edge!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "version": "3.8.19.641",
  "name": "Custom Cursor for Edge",
  "description": "Revamp Your Browsing with Custom Cursors for Edge!",
  "action": {
    "default_icon": "assets/static/logo_32.png",
    "default_title": "__MSG_title__",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "js": [
        "cursor-injector.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "js": [
        "content_site.js"
      ],
      "matches": [
        "https://cursorstore.com/*",
        "https://staging.cursorstore.com/*"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "img/*",
        "resources/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "options_page": "./options.html",
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "tabs",
    "activeTab",
    "storage",
    "scripting",
    "cookies"
  ],
  "host_permissions": [
    "<all_urls>",
    "*://*/*"
  ],
  "icons": {
    "16": "assets/static/logo_16.png",
    "48": "assets/static/logo_48.png",
    "128": "assets/static/logo_128.png"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}