Replay Bankroll Chart

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

Replay Bankroll Chart क्या है?

Replay Bankroll Chart moofish द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds a chart to the Replay Poker transactions page showing your bankroll over time"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Replay Bankroll Chart एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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                    

एक्सटेंशन की मूल जानकारी

नाम Replay Bankroll Chart Replay Bankroll Chart
ID lnicakbhbceneodanknoadlogjmgbmlm
आधिकारिक URL https://chrome.google.com/webstore/detail/replay-bankroll-chart/lnicakbhbceneodanknoadlogjmgbmlm
विवरण Adds a chart to the Replay Poker transactions page showing your bankroll over time
फ़ाइल का आकार 31.04 KB
स्थापना संख्या 66
वर्तमान संस्करण 0.1.3
अंतिम अपडेट 2019-06-08
प्रकाशन तिथि 2019-06-08
डेवलपर moofish
भुगतान के प्रकार free
सहायता पृष्ठ URL https://forums.replaypoker.com/t/bankroll-graph-and-my-brief-rpp-bio/13195/19
समर्थित भाषाएँ 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"
    }
}