Arbitrage Calculator
This extension provides quick arbitrage calculations intended for sports betting. In arbitrage betting, seconds matter and having…
什麼是Arbitrage Calculator?
Arbitrage Calculator是由JuicedOdds開發的Chrome擴展程式,該擴展的主要功能是“This extension provides quick arbitrage calculations intended for sports betting. In arbitrage betting, seconds matter and having…”。
擴展截圖
下載Arbitrage Calculator擴展crx文件
下載Arbitrage Calculator擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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.
擴展基本資訊
名稱 | Arbitrage Calculator |
ID | fganhdemlbigjkbogkoafaglmdbjafjh |
官方網址 | https://chromewebstore.google.com/detail/arbitrage-calculator/fganhdemlbigjkbogkoafaglmdbjafjh |
簡介 | This extension provides quick arbitrage calculations intended for sports betting. In arbitrage betting, seconds matter and having… |
檔案大小 | 79.42 KB |
安裝次數 | 61 |
目前版本 | 1.0 |
更新時間 | 2022-12-13 |
上架時間 | 2022-04-14 |
評分 | 3.00/5 共 2 次評分 |
開發者 | JuicedOdds |
電子郵箱 | [email protected] |
付費類型 | in_app |
支援的語言 | 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" } } |