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'" } |