Supreme Bot - ShopSupreme

This chrome extension will automate the process of shopping on supreme. This extension will open the item(s) you want to buy,…

Τι είναι το Supreme Bot - ShopSupreme;

Το Supreme Bot - ShopSupreme είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Daniel Zelfo, και η κύρια λειτουργία του είναι "This chrome extension will automate the process of shopping on supreme. This extension will open the item(s) you want to buy,…".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Supreme Bot - ShopSupreme

Λήψη αρχείων επέκτασης Supreme Bot - ShopSupreme σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        This chrome extension will automate the process of shopping on supreme. This extension will open the item(s) you want to buy, select the desired size(s), add to your cart, and check out for you.

Release Notes 1.0.1:
    Added Keywords
    Added Auto Process Payment                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Supreme Bot - ShopSupreme Supreme Bot - ShopSupreme
ID egoidoeijbfliecicioclcnhmpkbnked
Επίσημο URL https://chromewebstore.google.com/detail/supreme-bot-shopsupreme/egoidoeijbfliecicioclcnhmpkbnked
Περιγραφή This chrome extension will automate the process of shopping on supreme. This extension will open the item(s) you want to buy,…
Μέγεθος Αρχείου 50.21 KB
Αριθμός Εγκαταστάσεων 19
Τρέχουσα Έκδοση 1.0.1.1
Τελευταία Ενημέρωση 2020-06-18
Ημερομηνία Δημοσίευσης 2020-06-17
Προγραμματιστής Daniel Zelfo
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Supreme Bot - ShopSupreme",
    "version": "1.0.1.1",
    "manifest_version": 2,
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.supremenewyork.com\/shop\/all",
                "https:\/\/www.supremenewyork.com\/shop\/all\/"
            ],
            "js": [
                "actions\/openCat.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.supremenewyork.com\/shop\/all\/*"
            ],
            "js": [
                "actions\/openItems.js"
            ],
            "exclude_matches": [
                "https:\/\/www.supremenewyork.com\/shop\/all",
                "https:\/\/www.supremenewyork.com\/shop\/all\/"
            ]
        },
        {
            "matches": [
                "https:\/\/www.supremenewyork.com\/shop\/t-shirts\/*",
                "https:\/\/www.supremenewyork.com\/shop\/jackets\/*",
                "https:\/\/www.supremenewyork.com\/shop\/shirts\/*",
                "https:\/\/www.supremenewyork.com\/shop\/tops-sweaters\/*",
                "https:\/\/www.supremenewyork.com\/shop\/sweatshirts\/*",
                "https:\/\/www.supremenewyork.com\/shop\/pants\/*",
                "https:\/\/www.supremenewyork.com\/shop\/hats\/*",
                "https:\/\/www.supremenewyork.com\/shop\/bags\/*",
                "https:\/\/www.supremenewyork.com\/shop\/accessories\/*",
                "https:\/\/www.supremenewyork.com\/shop\/skate\/*"
            ],
            "js": [
                "actions\/addToCart.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.supremenewyork.com\/checkout",
                "https:\/\/www.supremenewyork.com\/checkout\/"
            ],
            "js": [
                "actions\/checkOut.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup\/pages\/items.html",
        "default_title": "Shop"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}