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 Daniel Zelfo द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This chrome extension will automate the process of shopping on supreme. This extension will open the item(s) you want to buy,…"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Supreme Bot - ShopSupreme एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
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" ] } } |