Supreme bot

A bot to automatically buy supreme drops

Supreme bot là gì?

Supreme bot là một tiện ích mở rộng Chrome được phát triển bởi senges.alex, và tính năng chính của nó là "A bot to automatically buy supreme drops".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

Tải xuống tệp CRX của tiện ích mở rộng Supreme bot

Tải xuống các tệp mở rộng Supreme bot dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Supreme bot Supreme bot
ID kmegjnhafkhbpehjllfjgfbnnefjffcm
URL Chính Thức https://chrome.google.com/webstore/detail/supreme-bot/kmegjnhafkhbpehjllfjgfbnnefjffcm
Mô tả A bot to automatically buy supreme drops
Kích Thước Tệp 125 KB
Số Lần Cài Đặt 136
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2019-04-25
Ngày Phát Hành 2019-04-25
Nhà Phát Triển senges.alex
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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'"
}