Custom  Roblox ADOPT ME cursor

Custom Roblox ADOPT ME cursor

Custom Roblox for chrome browser. Choose your favorite custom Roblox cursor with this extension

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": " Custom  Roblox ADOPT ME cursor",
  "description": "Custom Roblox for chrome browser. Choose your favorite custom Roblox cursor with this extension",
  "version": "1.2",
  "browser_action": {
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "scripts/bg.js"
    ],
    "persistent": true
  },
  "icons": {
    "16": "img/icon16.png",
    "32": "img/icon32.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "content_scripts": [
    {
      "js": [
        "scripts/content.js"
      ],
      "matches": [
        "*://*/*"
      ],
      "all_frames": true,
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "storage",
    "*://*/*"
  ]
}