Replay Bankroll Chart
Adds a chart to the Replay Poker transactions page showing your bankroll over time
Replay Bankroll Chart là gì?
Replay Bankroll Chart là một tiện ích mở rộng Chrome được phát triển bởi moofish, và tính năng chính của nó là "Adds a chart to the Replay Poker transactions page showing your bankroll over time".
Ả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 Replay Bankroll Chart
Tải xuống các tệp mở rộng Replay Bankroll Chart 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
Plots a chart on your Replay Poker transactions page to visualize your bankroll over time Inspired by https://forums.replaypoker.com/t/bankroll-graph-and-my-brief-rpp-bio/13195/18 Please note - the first time you visit the transactions page, the extension will download all of your Replay transactions to your computer, without showing any progress indicators until it has completed. If you have a lot of transactions on Replay, this could take up to a minute to complete, but it will be much quicker on subsequent visits This extension respects your privacy, a copy of the source code is available here to manually package or review: https://gitlab.com/moofish/replay-poker-bankroll-charts
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | lnicakbhbceneodanknoadlogjmgbmlm |
URL Chính Thức | https://chrome.google.com/webstore/detail/replay-bankroll-chart/lnicakbhbceneodanknoadlogjmgbmlm |
Mô tả | Adds a chart to the Replay Poker transactions page showing your bankroll over time |
Kích Thước Tệp | 31.04 KB |
Số Lần Cài Đặt | 66 |
Phiên Bản Hiện Tại | 0.1.3 |
Cập Nhật Lần Cuối | 2019-06-08 |
Ngày Phát Hành | 2019-06-08 |
Nhà Phát Triển | moofish |
Loại Thanh Toán | free |
URL Trang Trợ Giúp | https://forums.replaypoker.com/t/bankroll-graph-and-my-brief-rpp-bio/13195/19 |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Replay Bankroll Chart", "version": "0.1.3", "description": "Adds a chart to the Replay Poker transactions page showing your bankroll over time", "manifest_version": 2, "content_scripts": [ { "matches": [ "https:\/\/www.replaypoker.com\/transactions" ], "js": [ "transactions.js" ] } ], "background": { "scripts": [ "open-replay-on-click.js" ] }, "permissions": [ "storage" ], "icons": { "16": "icon16x16.png", "48": "icon48x48.png", "128": "icon.png" }, "browser_action": { "default_icon": "icon48x48.png" } } |