BuxBack - Earn R$

BuxBack - Earn R$

Earn ROBUX back for every purchase you make on the 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": "BuxBack - Earn R$",
  "version": "2.1",
  "description": "Earn ROBUX back for every purchase you make on the ROBLOX catalog!",
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "BuxBack Extension",
    "default_popup": "popup.html",
    "default_icon": {
      "128": "assets/icon.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.roblox.com/*"
      ],
      "js": [
        "js/content.js"
      ]
    },
    {
      "matches": [
        "https://*.roblox.com/*"
      ],
      "js": [
        "js/content2.js"
      ]
    }
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "ruleset_1",
        "enabled": true,
        "path": "rules_1.json"
      }
    ]
  },
  "host_permissions": [
    "https://*.roblox.com/*",
    "https://*.rbxcdn.com/*",
    "https://*.blox.land/*"
  ],
  "permissions": [
    "storage",
    "declarativeNetRequest",
    "notifications"
  ]
}