Roblox Cursors HD

Roblox Cursors HD

Transform your mouse cursor into the distinctive Roblox icon or theme effortlessly with the Roblox Cursors HD 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.0",
  "manifest_version": 3,
  "icons": {
    "16": "./asset/icons/16.png",
    "32": "./asset/icons/32.png",
    "48": "./asset/icons/48.png",
    "128": "./asset/icons/128.png"
  },
  "action": {
    "default_icon": "./asset/icons/32.png",
    "default_title": "__MSG_defTitle__",
    "default_popup": "./html/popup.html"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "permissions": [
    "storage",
    "unlimitedStorage",
    "tabs",
    "scripting",
    "declarativeNetRequest",
    "gcm"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "content_scripts": [
    {
      "js": [
        "js/content.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "all_frames": true,
      "run_at": "document_start"
    }
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "rules1",
        "enabled": true,
        "path": "rules.json"
      }
    ]
  },
  "web_accessible_resources": [
    {
      "resources": [
        "js/init.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ]
}