Replay Bankroll Chart
Adds a chart to the Replay Poker transactions page showing your bankroll over time
¿Qué es Replay Bankroll Chart?
Replay Bankroll Chart es una extensión de Chrome desarrollada por moofish, y su función principal es "Adds a chart to the Replay Poker transactions page showing your bankroll over time".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Replay Bankroll Chart
Descarga archivos de extensión Replay Bankroll Chart en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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
Información Básica de la Extensión
Nombre | |
ID | lnicakbhbceneodanknoadlogjmgbmlm |
URL Oficial | https://chrome.google.com/webstore/detail/replay-bankroll-chart/lnicakbhbceneodanknoadlogjmgbmlm |
Descripción | Adds a chart to the Replay Poker transactions page showing your bankroll over time |
Tamaño del Archivo | 31.04 KB |
Cantidad de Instalaciones | 66 |
Versión Actual | 0.1.3 |
Última Actualización | 2019-06-08 |
Fecha de Publicación | 2019-06-08 |
Desarrollador | moofish |
Tipo de Pago | free |
URL de la Página de Ayuda | https://forums.replaypoker.com/t/bankroll-graph-and-my-brief-rpp-bio/13195/19 |
Idiomas Soportados | 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" } } |