Supreme bot
A bot to automatically buy supreme drops
Vad är Supreme bot?
Supreme bot är en Chrome-tillägg utvecklad av senges.alex, och dess huvudfunktion är "A bot to automatically buy supreme drops".
Tilläggsskärmbilder
Ladda ner Supreme bot-förlängningens CRX-fil
Ladda ner Supreme bot-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Update: Fixed bug that wouldn't allow to select a size Grundläggande Information om Tillägg
| Namn | |
| ID | kmegjnhafkhbpehjllfjgfbnnefjffcm |
| Officiell webbadress | https://chrome.google.com/webstore/detail/supreme-bot/kmegjnhafkhbpehjllfjgfbnnefjffcm |
| Beskrivning | A bot to automatically buy supreme drops |
| Filstorlek | 125 KB |
| Antal Installationer | 136 |
| Aktuell Version | 1.1 |
| Senast Uppdaterad | 2019-04-25 |
| Publiceringsdatum | 2019-04-25 |
| Utvecklare | senges.alex |
| Betalningssätt | free |
| Stödda Språk | 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'"
} | |