Arbitrage Calculator

This extension provides quick arbitrage calculations intended for sports betting. In arbitrage betting, seconds matter and having…

Was ist Arbitrage Calculator?

Arbitrage Calculator ist eine Chrome-Erweiterung, die von JuicedOdds entwickelt wurde, und ihr Hauptmerkmal ist "This extension provides quick arbitrage calculations intended for sports betting. In arbitrage betting, seconds matter and having…".

Erweiterungsscreenshots

screenshot

Arbitrage Calculator-Erweiterungs-CRX-Datei herunterladen

Laden Sie Arbitrage Calculator-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 extension provides quick arbitrage calculations intended for sports betting. In arbitrage betting, seconds matter and having this extension at the tip of your fingers can save your bet before it is removed by sports books. Calculations are provided instantly and options to convert between 2-way and 3-way arbitrage bets are available. Lastly, 3 different odds formats are available for your convenience: American, Decimal, and Fraction. There is a small $2 one time fee for use of this calculator to help support future projects and the creator. Best of luck with your arbitrage bets.                    

Grundlegende Informationen zur Erweiterung

Name Arbitrage Calculator Arbitrage Calculator
ID fganhdemlbigjkbogkoafaglmdbjafjh
Offizielle URL https://chromewebstore.google.com/detail/arbitrage-calculator/fganhdemlbigjkbogkoafaglmdbjafjh
Beschreibung This extension provides quick arbitrage calculations intended for sports betting. In arbitrage betting, seconds matter and having…
Dateigröße 79.42 KB
Installationsanzahl 61
Aktuelle Version 1.0
Letztes Update 2022-12-13
Veröffentlichungsdatum 2022-04-14
Bewertung 3.00/5 Insgesamt 2 Bewertungen
Entwickler JuicedOdds
E-Mail [email protected]
Zahlungsart in_app
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "author": "John Robert B. Guazon",
    "name": "Arbitrage Calculator",
    "version": "1.0",
    "icons": {
        "16": "images\/icon_16.png",
        "32": "images\/icon_32.png",
        "48": "images\/icon_48.png",
        "64": "images\/icon_64.png",
        "128": "images\/icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/extensionpay.com\/*"
            ],
            "js": [
                "utils\/ExtPay.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "storage"
    ],
    "action": {
        "default_icon": {
            "16": "images\/icon_16.png",
            "32": "images\/icon_32.png",
            "48": "images\/icon_48.png",
            "64": "images\/icon_64.png",
            "128": "images\/icon_128.png"
        },
        "default_title": "Arbitrage Calculator",
        "default_popup": "popup\/assistant.html"
    },
    "options_page": "options\/set.html",
    "background": {
        "service_worker": "background\/background.js"
    }
}