Supreme bot
A bot to automatically buy supreme drops
Supreme botとは何ですか?
Supreme botはsenges.alexによって開発されたChromeの拡張機能で、その主な機能は「A bot to automatically buy supreme drops」です。
拡張機能のスクリーンショット
Supreme bot拡張機能のCRXファイルをダウンロード
Supreme bot拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Update: Fixed bug that wouldn't allow to select a size 拡張機能の基本情報
| 名前 | |
| ID | kmegjnhafkhbpehjllfjgfbnnefjffcm |
| 公式URL | https://chrome.google.com/webstore/detail/supreme-bot/kmegjnhafkhbpehjllfjgfbnnefjffcm |
| 説明 | A bot to automatically buy supreme drops |
| ファイルサイズ | 125 KB |
| インストール数 | 136 |
| 現在のバージョン | 1.1 |
| 最終更新日 | 2019-04-25 |
| 公開日 | 2019-04-25 |
| 開発者 | senges.alex |
| 支払い方法 | free |
| 対応言語 | 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'"
} | |