Odds Converter
Click this icon to convert moneyline odds into implied probability, and vice versa.
什麼是Odds Converter?
Odds Converter是由dylan.potter.oconnell開發的Chrome擴展程式,該擴展的主要功能是“Click this icon to convert moneyline odds into implied probability, and vice versa.”。
擴展截圖
下載Odds Converter擴展crx文件
下載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 |
官方網址 | 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" ] } |