Salty Boy

Automatic betting extension for Salty Bet

Salty Boy란 무엇입니까?

Salty Boy은(는) francisco.ad.trindade에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatic betting extension for Salty Bet"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Salty Boy 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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).                    

확장 프로그램 기본 정보

이름 Salty Boy Salty Boy
ID khlbmnneeaecmpeicbaodeaeicljnddj
공식 URL https://chromewebstore.google.com/detail/salty-boy/khlbmnneeaecmpeicbaodeaeicljnddj
설명 Automatic betting extension for Salty Bet
파일 크기 32.98 KB
설치 횟수 759
현재 버전 1.8.2
최근 업데이트 2024-02-24
출시 날짜 2022-01-05
평점 5.00/5 총 14 개의 평점
개발자 francisco.ad.trindade
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://salty-boy.com/
도움말 페이지 URL https://github.com/FranciscoAT/saltyboy/issues
지원되는 언어 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"
    }
}