Salty Boy

Automatic betting extension for Salty Bet

Cos'è Salty Boy?

Salty Boy è un'estensione di Chrome sviluppata da francisco.ad.trindade, e la sua funzione principale è "Automatic betting extension for Salty Bet".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Salty Boy

Scarica i file di estensione Salty Boy in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Salty Boy Salty Boy
ID khlbmnneeaecmpeicbaodeaeicljnddj
URL Ufficiale https://chromewebstore.google.com/detail/salty-boy/khlbmnneeaecmpeicbaodeaeicljnddj
Descrizione Automatic betting extension for Salty Bet
Dimensione del File 32.98 KB
Conteggio Installazioni 759
Versione Corrente 1.8.2
Ultimo Aggiornamento 2024-02-24
Data di Pubblicazione 2022-01-05
Valutazione 5.00/5 Totale 14 Valutazioni
Sviluppatore francisco.ad.trindade
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://salty-boy.com/
URL della Pagina di Aiuto https://github.com/FranciscoAT/saltyboy/issues
Lingue Supportate 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"
    }
}