Edgeless Dice Bot
A chrome extension that provides various enhancements for Edgeless' dice game.
Edgeless Dice Bot là gì?
Edgeless Dice Bot là một tiện ích mở rộng Chrome được phát triển bởi danielchan.yes, và tính năng chính của nó là "A chrome extension that provides various enhancements for Edgeless' dice game.".
Ả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 Edgeless Dice Bot
Tải xuống các tệp mở rộng Edgeless Dice Bot 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
Edgeless Dicebot v1 This is a chrome extension that provides various betting enhancements for Edgeless' Dice Game. https://casino.edgeless.io/games/dice Features - Enhances the automated betting feature by allowing multiple steps [martingale betting strategy](https://en.wikipedia.org/wiki/Martingale_(betting_system)) directly from the Chrome browser. - Enables users to perform (Martingale betting strategy including separate persistent starting balance customizable multiplier, stop loss, and odds calculator - Customisable initial bet, win probability, stop bank, steps, reset step, reset multiplier - Real-time display for win/ loss streak, total bets, profit, and bank - Real-time Bankroll & Losses Distribution chart - Dice Bot Start & Stop buttons Github https://github.com/Whatzhub/edgeless-dicebot
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Edgeless Dice Bot |
ID | ekbnlmpnlflideapgmnlgghkpndpmoap |
URL Chính Thức | https://chromewebstore.google.com/detail/edgeless-dice-bot/ekbnlmpnlflideapgmnlgghkpndpmoap |
Mô tả | A chrome extension that provides various enhancements for Edgeless' dice game. |
Kích Thước Tệp | 489 KB |
Số Lần Cài Đặt | 43 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2018-06-01 |
Ngày Phát Hành | 2018-06-01 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | danielchan.yes |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Edgeless Dice Bot", "version": "1.0", "description": "A chrome extension that provides various enhancements for Edgeless' dice game.", "permissions": [ "activeTab", "declarativeContent", "storage" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "page_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/edg_dicebot16.png", "32": "images\/edg_dicebot32.png", "48": "images\/edg_dicebot48.png", "128": "images\/edg_dicebot128.png" } }, "content_scripts": [ { "matches": [ "https:\/\/casino.edgeless.io\/games\/*" ], "css": [ "css\/popup.css" ], "js": [ "lib\/jquery-3.3.1.slim.min.js", "helpers\/helpers.js" ] } ], "icons": { "16": "images\/edg_dicebot16.png", "32": "images\/edg_dicebot32.png", "48": "images\/edg_dicebot48.png", "128": "images\/edg_dicebot128.png" }, "manifest_version": 2 } |