Roblox Cursors

Roblox Cursors

Change mouse cursor into Roblox icon or theme via Roblox Custom Cursors For Chrome extension

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "short_name": "__MSG_shortName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "version": "1.2.3.2",
  "manifest_version": 3,
  "icons": {
    "16": "./asset/icon_16.png",
    "24": "./asset/icon_24.png",
    "32": "./asset/icon_32.png",
    "48": "./asset/icon_48.png",
    "128": "./asset/icon_128.png"
  },
  "action": {
    "default_icon": "./asset/icon_32.png",
    "default_title": "__MSG_defTitle__",
    "default_popup": "./html/PopUp.html"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "permissions": [
    "storage",
    "unlimitedStorage",
    "tabs",
    "scripting",
    "declarativeNetRequest",
    "gcm",
    "cookies"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "content_scripts": [
    {
      "js": [
        "js/ContentScript.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "all_frames": true,
      "run_at": "document_start"
    }
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "rules1",
        "enabled": true,
        "path": "r-1.json"
      }
    ]
  },
  "web_accessible_resources": [
    {
      "resources": [
        "js/initCursor.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ]
}