Roblox Trade Bot Defender

Roblox Trade Bot Defender

Automatically declines trades from bots

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Roblox Trade Bot Defender",
  "description": "Automatically declines trades from bots",
  "version": "0.0.0.26",
  "background": {
    "scripts": [
      "main.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "https://www.roblox.com/*"
      ],
      "js": [
        "content/botIcon.js"
      ]
    }
  ],
  "icons": {
    "16": "content/icon16.png",
    "48": "content/icon48.png",
    "128": "content/icon128.png",
    "512": "content/icon512.png"
  },
  "permissions": [
    "https://trades.roblox.com/v1/trades/*",
    "https://gist.githubusercontent.com/*",
    "https://www.patreon.com/TradeBotDefender",
    "storage"
  ],
  "browser_action": {
    "default_icon": "content/icon512.png",
    "default_popup": "pages/popup.html"
  },
  "web_accessible_resources": [
    "*.png"
  ]
}