Supreme bot

A bot to automatically buy supreme drops

ما هو Supreme bot؟

Supreme bot هو إضافة Chrome تم تطويرها بواسطة senges.alex، والميزة الرئيسية لها هي "A bot to automatically buy supreme drops".

لقطات شاشة التمديد

تحميل ملف CRX للإضافة Supreme bot

قم بتنزيل ملفات الامتداد Supreme bot بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Update: Fixed bug that wouldn't allow to select a size                    

معلومات أساسية عن التمديد

الاسم Supreme bot Supreme bot
ID kmegjnhafkhbpehjllfjgfbnnefjffcm
عنوان URL الرسمي https://chrome.google.com/webstore/detail/supreme-bot/kmegjnhafkhbpehjllfjgfbnnefjffcm
الوصف A bot to automatically buy supreme drops
حجم الملف 125 KB
عدد التثبيتات 136
النسخة الحالية 1.1
آخر تحديث 2019-04-25
تاريخ النشر 2019-04-25
المطور senges.alex
نوع الدفع free
اللغات المدعومة en
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'"
}