Roblox free items autobuyer

Roblox free items autobuyer

Automatically get the most recent free items from Roblox catalog.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Roblox free items autobuyer",
  "description": "Automatically get the most recent free items from Roblox catalog.",
  "version": "2.1",
  "author": "[email protected]",
  "icons": {
    "128": "icon.png"
  },
  "action": {
    "default_title": "Roblox autobuyer",
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "service_worker.js",
    "type": "module"
  },
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "*://*.roblox.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://www.roblox.com/autobuyer"
      ],
      "css": [
        "not-found.css"
      ]
    },
    {
      "matches": [
        "*://*.roblox.com/*"
      ],
      "js": [
        "left-list-item.js",
        "main.js"
      ],
      "css": [
        "styles.css",
        "left-list-item.css"
      ]
    }
  ]
}