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開發的Chrome擴展程式,該擴展的主要功能是“Heads-up display and hand recorder for the poker website pokernow.club. Currently does not support poker variants other than…”。
擴展截圖
下載Pokernow HUD擴展crx文件
下載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 |
ID | cfollcpmoefbhkckhkmhlapkfnicljeh |
官方網址 | 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\/*" ] } ] } |