Replay Bankroll Chart

Adds a chart to the Replay Poker transactions page showing your bankroll over time

Qu'est-ce que Replay Bankroll Chart ?

Replay Bankroll Chart est une extension Chrome développée par moofish, et sa fonction principale est "Adds a chart to the Replay Poker transactions page showing your bankroll over time".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Replay Bankroll Chart

Téléchargez les fichiers d'extension Replay Bankroll Chart au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Replay Bankroll Chart Replay Bankroll Chart
ID lnicakbhbceneodanknoadlogjmgbmlm
URL Officiel https://chrome.google.com/webstore/detail/replay-bankroll-chart/lnicakbhbceneodanknoadlogjmgbmlm
Description Adds a chart to the Replay Poker transactions page showing your bankroll over time
Taille du Fichier 31.04 KB
Nombre d'Installations 66
Version Actuelle 0.1.3
Dernière Mise à Jour 2019-06-08
Date de Publication 2019-06-08
Développeur moofish
Type de Paiement free
URL de la Page d'Aide https://forums.replaypoker.com/t/bankroll-graph-and-my-brief-rpp-bio/13195/19
Langues Prises en Charge 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"
    }
}