Pokernow HUD

Heads-up display and hand recorder for the poker website pokernow.club. Currently does not support poker variants other than…

Τι είναι το Pokernow HUD;

Το Pokernow HUD είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Unrealduck Studios, και η κύρια λειτουργία του είναι "Heads-up display and hand recorder for the poker website pokernow.club. Currently does not support poker variants other than…".

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

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Pokernow HUD

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

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

                        Heads-up display and hand recorder for the poker website pokernow.club. Currently does not support poker variants other than Hold'em. Please email any bugs to [email protected]. Make sure to refresh any PokerNow page you have open after beginning the trial.

Check the help page in the extension popup for more info.

This extension does not facilitate online gambling as pokernow.club does not accept real money, and so is not a gambling website.                    

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

Όνομα Pokernow HUD Pokernow HUD
ID cfollcpmoefbhkckhkmhlapkfnicljeh
Επίσημο URL https://chromewebstore.google.com/detail/pokernow-hud/cfollcpmoefbhkckhkmhlapkfnicljeh
Περιγραφή Heads-up display and hand recorder for the poker website pokernow.club. Currently does not support poker variants other than…
Μέγεθος Αρχείου 260 KB
Αριθμός Εγκαταστάσεων 1,581
Τρέχουσα Έκδοση 10.7
Τελευταία Ενημέρωση 2024-02-25
Ημερομηνία Δημοσίευσης 2021-01-04
Αξιολόγηση 4.00/5 Συνολικά 6 Αξιολογήσεις
Προγραμματιστής Unrealduck Studios
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Pokernow HUD",
    "version": "10.7",
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "serviceWorker.js"
    },
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/extensionpay.com\/*"
            ],
            "js": [
                "ExtPay.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/www.pokernow.club\/games\/*"
            ],
            "js": [
                "ExtPay.js",
                "thirdParty\/jquery.min.js",
                "content.js"
            ]
        }
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "donatePopup.html"
            ],
            "matches": [
                "https:\/\/www.pokernow.club\/*"
            ]
        }
    ]
}