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\/*"
            ]
        }
    ]
}