GBF Poker Helper

Counts cards in double-up-or-low and provides probabilities

Τι είναι το GBF Poker Helper;

Το GBF Poker Helper είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Will CorSan, και η κύρια λειτουργία του είναι "Counts cards in double-up-or-low and provides probabilities".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης GBF Poker Helper

Λήψη αρχείων επέκτασης GBF Poker Helper σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        This extension is the product of my own curiosity when I started Granblue Fantasy casino and reading numerous GBF poker guides.

I decided to develop it after not being able to find any program or extension that could help me count cards and calculate the probability of getting a higher or lower card. Therefore this small extension keeps count of the cards that have been drawn during every turn progression and calculates a more accurate probability that improves on the tactic of just betting up for anything less than 8 or down for anything else higher.

Important notes:
- The extension interacts only with Chrome layer and therefore does not modify anything within the game, it only uses the information provided to mathematically calculate probabilities, yet USE IT AT YOUR OWN RISK as per the GBF ToS.
- To use the extension, you must open Developer Tools (Shorcut: F12) and click on the Panel list to open "GBF Poker Helper" panel. (See screenshots)
- The extension active within GBF game address but only works when playing Poker double up! otherwise it does not do anything.
- Please note this extension only shows the mathematical probabilities and therefore does not guarantee a successful bet.
- With few bets the probabilities differences might not be that significant, but as soon as the number of turn increases the information given by the extension can make a difference.

If you have any comments or suggestions please let me know.

Credits: The icons used are subset of images property of CyGames.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα GBF Poker Helper GBF Poker Helper
ID cihlfiablcjbjlkkjeoffllogieggbgm
Επίσημο URL https://chromewebstore.google.com/detail/gbf-poker-helper/cihlfiablcjbjlkkjeoffllogieggbgm
Περιγραφή Counts cards in double-up-or-low and provides probabilities
Μέγεθος Αρχείου 62.85 KB
Αριθμός Εγκαταστάσεων 231
Τρέχουσα Έκδοση 1.0
Τελευταία Ενημέρωση 2020-07-22
Ημερομηνία Δημοσίευσης 2020-07-22
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής Will CorSan
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GBF Poker Helper",
    "author": "Will CorSan",
    "version": "1.0",
    "description": "Counts cards in double-up-or-low and provides probabilities",
    "permissions": [
        "activeTab",
        "declarativeContent"
    ],
    "background": {
        "scripts": [
            "gbfpokerhelper_background.js"
        ],
        "persistent": false
    },
    "devtools_page": "html\/gbfpokerhelper_devtools.html",
    "page_action": {
        "default_icon": {
            "16": "images\/gbfpoker_16.png",
            "32": "images\/gbfpoker_32.png",
            "48": "images\/gbfpoker_48.png",
            "128": "images\/gbfpoker_128.png"
        }
    },
    "icons": {
        "16": "images\/gbfpoker_16.png",
        "32": "images\/gbfpoker_32.png",
        "48": "images\/gbfpoker_48.png",
        "128": "images\/gbfpoker_128.png"
    },
    "manifest_version": 2
}