Pokernow HUD
Heads-up display and hand recorder for the poker website pokernow.club. Currently does not support poker variants other than…
Wat is Pokernow HUD?
Pokernow HUD is een Chrome-extensie ontwikkeld door Unrealduck Studios, en de belangrijkste functie is "Heads-up display and hand recorder for the poker website pokernow.club. Currently does not support poker variants other than…".
Extensie Screenshots
Download het CRX-bestand van de extensie Pokernow HUD
Download Pokernow HUD-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Pokernow HUD |
ID | cfollcpmoefbhkckhkmhlapkfnicljeh |
Officiële URL | https://chromewebstore.google.com/detail/pokernow-hud/cfollcpmoefbhkckhkmhlapkfnicljeh |
Beschrijving | Heads-up display and hand recorder for the poker website pokernow.club. Currently does not support poker variants other than… |
Bestandsgrootte | 260 KB |
Aantal Installaties | 1,581 |
Huidige Versie | 10.7 |
Laatst Bijgewerkt | 2024-02-25 |
Publicatiedatum | 2021-01-04 |
Beoordeling | 4.00/5 Totaal 6 Beoordelingen |
Ontwikkelaar | Unrealduck Studios |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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\/*" ] } ] } |