Poker Now Pot Odds Calculator
This extension adds a pot odds widget to the Poker Now website.
Poker Now Pot Odds Calculatorคืออะไร?
Poker Now Pot Odds Calculator เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Peter MacRobert และคุณลักษณะหลักของมันคือ "This extension adds a pot odds widget to the Poker Now website."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Poker Now Pot Odds Calculator
ดาวน์โหลดไฟล์ส่วนขยาย Poker Now Pot Odds Calculator ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
UPDATE 4th Jan 2021: Fixed a bug whereby the pot odds were incorrectly calculated. New calculation: Odds = [Bet Value] / ( [Bet Value] + [Value in Pot] ) -- This Chrome Extension adds a real-time pot odds calculator to your poker game on Poker Now, showing pot odds for every decision (yours and other players). "What are pot odds", you ask? From Wikipedia: "In poker, pot odds are the ratio of the current size of the pot to the cost of a contemplated call. Pot odds are often compared to the probability of winning a hand with a future card in order to estimate the call's expected value." You can use pot odds to help you decide whether to call, raise or fold, by comparing the pot odds to the odds of making your hand. Is this extension safe? Yes. This extension doesn't send any data off-site, nor does it look at your cards. The calculation is based purely on the bet size and pot value – it has nothing to do with card values, hand odds, or your opponents playing style. How does it work? Once you've installed the extension, you'll see a small "Pot Odds" box appear at all times in the top right corner of the table. The odds are expressed as a fraction of 1.0. For example, pot odds of "0.5" (or 50%) means that you need a better than 50% chance of making your hand in order to see positive expectation value from the hand. Note: This plugin is not affiliated with Poker Now (www.pokernow.com).
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | ccapilkkpegcaepdlpmmakoaepehkhdo |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/poker-now-pot-odds-calcul/ccapilkkpegcaepdlpmmakoaepehkhdo |
คำอธิบาย | This extension adds a pot odds widget to the Poker Now website. |
ขนาดไฟล์ | 832 KB |
จำนวนการติดตั้ง | 1,953 |
เวอร์ชันปัจจุบัน | 1.0.3 |
อัปเดตครั้งล่าสุด | 2021-01-20 |
วันที่เผยแพร่ | 2020-07-20 |
ผู้พัฒนา | Peter MacRobert |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/originalpete/pokernow-pot-odds-extension |
URL หน้าช่วยเหลือ | https://github.com/originalpete/pokernow-pot-odds-extension |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Poker Now Pot Odds Calculator", "version": "1.0.3", "manifest_version": 2, "description": "This extension adds a pot odds widget to the Poker Now website.", "homepage_url": "https:\/\/www.pokernow.club", "icons": { "128": "icons\/icon128.png" }, "default_locale": "en", "permissions": [], "content_scripts": [ { "matches": [ "https:\/\/www.pokernow.club\/games\/*" ], "css": [ "src\/inject\/inject.css" ] }, { "matches": [ "https:\/\/www.pokernow.club\/games\/*" ], "run_at": "document_idle", "js": [ "js\/jquery-3.5.1.min.js", "src\/inject\/inject.js" ] } ] } |