Arbitrage Calculator
This extension provides quick arbitrage calculations intended for sports betting. In arbitrage betting, seconds matter and having…
Arbitrage Calculator là gì?
Arbitrage Calculator là một tiện ích mở rộng Chrome được phát triển bởi JuicedOdds, và tính năng chính của nó là "This extension provides quick arbitrage calculations intended for sports betting. In arbitrage betting, seconds matter and having…".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Arbitrage Calculator
Tải xuống các tệp mở rộng Arbitrage Calculator dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Arbitrage Calculator |
ID | fganhdemlbigjkbogkoafaglmdbjafjh |
URL Chính Thức | https://chromewebstore.google.com/detail/arbitrage-calculator/fganhdemlbigjkbogkoafaglmdbjafjh |
Mô tả | This extension provides quick arbitrage calculations intended for sports betting. In arbitrage betting, seconds matter and having… |
Kích Thước Tệp | 79.42 KB |
Số Lần Cài Đặt | 61 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2022-12-13 |
Ngày Phát Hành | 2022-04-14 |
Đánh Giá | 3.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | JuicedOdds |
[email protected] | |
Loại Thanh Toán | in_app |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |