Fortnite cursor

Fortnite cursor

Custom Fortnite cursor for your chrome

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Fortnite cursor",
  "description": "Custom Fortnite cursor for your chrome",
  "version": "1.0.2",
  "action": {
    "default_popup": "popup.html",
    "default_title": "Fortnite cursor"
  },
  "icons": {
    "16": "img/logo-small-16.png",
    "32": "img/logo-small-32.png",
    "48": "img/logo-small-48.png",
    "128": "img/logo-small-128.png"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "app/common.js",
        "cur/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "app/common.js",
        "app/content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "service_worker": "app/background.js",
    "type": "module"
  },
  "permissions": [
    "storage",
    "notifications",
    "webNavigation"
  ]
}