Supreme bot

Supreme bot

A bot to automatically buy supreme drops

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Supreme bot",
  "version": "1.1",
  "description": "A bot to automatically buy supreme drops",
  "manifest_version": 2,
  "background": {
    "scripts": [
      "./background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.supremenewyork.com/shop/*"
      ],
      "js": [
        "./bot.js"
      ]
    },
    {
      "matches": [
        "https://www.supremenewyork.com/checkout"
      ],
      "js": [
        "./pay.js"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "declarativeContent",
    "storage"
  ],
  "page_action": {
    "default_popup": "./index.html",
    "default_icon": {
      "16": "images/16.png",
      "32": "images/32.png",
      "128": "images/128.png",
      "256": "images/256.jpg"
    }
  },
  "icons": {
    "16": "images/16.png",
    "32": "images/32.png",
    "128": "images/128.png",
    "256": "images/256.jpg"
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}