Roblox Characters Custom Cursor

Roblox Characters Custom Cursor

This unique Chrome extension allows you to use customized cursors on all websites within your web browser

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "version": "1.3",
  "permissions": [
    "activeTab",
    "storage",
    "tabs",
    "scripting",
    "webNavigation"
  ],
  "icons": {
    "128": "assets/image/128.png"
  },
  "content_security_policy": {
    "content_security_policy": "img-src 'self' data: *.tile.openstreetmap.org https://apis.google.com https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/ https://ssl.gstatic.com/; script-src 'self' 'unsafe-eval'; object-src 'self'"
  },
  "host_permissions": [
    "https://*/*"
  ],
  "background": {
    "service_worker": "assets/js/background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "assets/js/common.js",
        "assets/js/content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "https://allcursor.com/*",
        "assets/image/*",
        "assets/js/common.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": "assets/image/128.png"
  }
}