Supreme bot
A bot to automatically buy supreme drops
Cos'è Supreme bot?
Supreme bot è un'estensione di Chrome sviluppata da senges.alex, e la sua funzione principale è "A bot to automatically buy supreme drops".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Supreme bot
Scarica i file di estensione Supreme bot in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Update: Fixed bug that wouldn't allow to select a size Informazioni di Base sull'Estensione
| Nome | |
| ID | kmegjnhafkhbpehjllfjgfbnnefjffcm |
| URL Ufficiale | https://chrome.google.com/webstore/detail/supreme-bot/kmegjnhafkhbpehjllfjgfbnnefjffcm |
| Descrizione | A bot to automatically buy supreme drops |
| Dimensione del File | 125 KB |
| Conteggio Installazioni | 136 |
| Versione Corrente | 1.1 |
| Ultimo Aggiornamento | 2019-04-25 |
| Data di Pubblicazione | 2019-04-25 |
| Sviluppatore | senges.alex |
| Tipo di Pagamento | free |
| Lingue Supportate | 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'"
} | |