Odds Converter
Click this icon to convert moneyline odds into implied probability, and vice versa.
Odds Converterคืออะไร?
Odds Converter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย dylan.potter.oconnell และคุณลักษณะหลักของมันคือ "Click this icon to convert moneyline odds into implied probability, and vice versa."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Odds Converter
ดาวน์โหลดไฟล์ส่วนขยาย Odds Converter ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This app offers a convenient way to convert between odds presented in fractional, moneyline, and implied odds format on the fly. It does this in two ways. 1. Click the Odds Converter icon in the toolbar to translate any odds written in plain text on the current page into the format of implied odds. You can click the icon again to translate it back to moneyline format, although the app will not record the original format. 2. If you select any text and right click it, you can select the button which says "Open Odds Converter", which will bring you to a simple page which lets you type in odds in any format, and see the conversions continuously update as you type. Frequently odds won't be written in the right plaintext format, and this is a catchall for those cases. This is a side project done by someone with limited knowledge of Javascript, so the app's functionality is limited. However, it is quite convenient for this narrow purpose.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | klechkhopfnjihobbcfeheooaigjjgdg |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/odds-converter/klechkhopfnjihobbcfeheooaigjjgdg |
คำอธิบาย | Click this icon to convert moneyline odds into implied probability, and vice versa. |
ขนาดไฟล์ | 946 KB |
จำนวนการติดตั้ง | 26 |
เวอร์ชันปัจจุบัน | 1.1 |
อัปเดตครั้งล่าสุด | 2018-11-17 |
วันที่เผยแพร่ | 2018-11-17 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | dylan.potter.oconnell |
ประเภทการชำระเงิน | in_app |
เว็บไซต์ส่วนขยาย | https://dylanpotteroconnell.github.io/ |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Odds Converter", "description": "Click this icon to convert moneyline odds into implied probability, and vice versa.", "version": "1.1", "background": { "scripts": [ "background.js", "rightclick.js" ] }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "browser_action": { "default_icon": "icon48.png", "default_title": "Convert Odds" }, "permissions": [ "activeTab", "contextMenus" ] } |