Salty Boy

Automatic betting extension for Salty Bet

Was ist Salty Boy?

Salty Boy ist eine Chrome-Erweiterung, die von francisco.ad.trindade entwickelt wurde, und ihr Hauptmerkmal ist "Automatic betting extension for Salty Bet".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Salty Boy-Erweiterungs-CRX-Datei herunterladen

Laden Sie Salty Boy-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name Salty Boy Salty Boy
ID khlbmnneeaecmpeicbaodeaeicljnddj
Offizielle URL https://chromewebstore.google.com/detail/salty-boy/khlbmnneeaecmpeicbaodeaeicljnddj
Beschreibung Automatic betting extension for Salty Bet
Dateigröße 32.98 KB
Installationsanzahl 759
Aktuelle Version 1.8.2
Letztes Update 2024-02-24
Veröffentlichungsdatum 2022-01-05
Bewertung 5.00/5 Insgesamt 14 Bewertungen
Entwickler francisco.ad.trindade
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://salty-boy.com/
Hilfeseite URL https://github.com/FranciscoAT/saltyboy/issues
Unterstützte Sprachen 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"
    }
}