Salty Boy
Automatic betting extension for Salty Bet
Salty Boy là gì?
Salty Boy là một tiện ích mở rộng Chrome được phát triển bởi francisco.ad.trindade, và tính năng chính của nó là "Automatic betting extension for Salty Bet".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Salty Boy
Tải xuống các tệp mở rộng Salty Boy dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
This bot allows users to automatically bet on Salty Bet (https://saltybet.com). It makes requests out to Salty Boy (https://salty-boy.com) and accesses the data there to make best bet determinations. Includes various bet modes, betting configurations, and the ability to overlay information about the fighter right into SaltyBet. All the source code for this project can be found on GitHub (https://github.com/FranciscoAT/saltyboy). If there are any issues with the bot please make an issue on the project. While this extension does not track you in any fashion it does make requests out to https://salty-boy.com which has rolling request logs. However, this information is not used for anything. If you have any concerns about this feel free to contact me on the above GitHub page. Salty Boy Icon made by: Freepik (https://www.freepik.com) and can be found on Flaticon (https://www.flaticon.com).
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | khlbmnneeaecmpeicbaodeaeicljnddj |
URL Chính Thức | https://chromewebstore.google.com/detail/salty-boy/khlbmnneeaecmpeicbaodeaeicljnddj |
Mô tả | Automatic betting extension for Salty Bet |
Kích Thước Tệp | 32.98 KB |
Số Lần Cài Đặt | 759 |
Phiên Bản Hiện Tại | 1.8.2 |
Cập Nhật Lần Cuối | 2024-02-24 |
Ngày Phát Hành | 2022-01-05 |
Đánh Giá | 5.00/5 Tổng số 14 Đánh Giá |
Nhà Phát Triển | francisco.ad.trindade |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://salty-boy.com/ |
URL Trang Trợ Giúp | https://github.com/FranciscoAT/saltyboy/issues |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Salty Boy", "description": "Automatic betting extension for Salty Bet", "version": "1.8.2", "manifest_version": 3, "background": { "service_worker": "background.js" }, "permissions": [ "storage" ], "action": { "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/www.saltybet.com\/*" ], "js": [ "content_script.js" ] } ], "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" } } |