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 Unrealduck Studios द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Heads-up display and hand recorder for the poker website pokernow.club. Currently does not support poker variants other than…"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Pokernow HUD एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
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\/*" ] } ] } |