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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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\/*" ] } ] } |