Odds Converter

Click this icon to convert moneyline odds into implied probability, and vice versa.

What is Odds Converter?

Odds Converter is a Chrome extension developed by dylan.potter.oconnell, and its main feature is "Click this icon to convert moneyline odds into implied probability, and vice versa.".

Extension Screenshots

screenshot

Download Odds Converter Extension CRX File

Download Odds Converter extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Odds Converter Odds Converter
ID klechkhopfnjihobbcfeheooaigjjgdg
Official URL https://chrome.google.com/webstore/detail/odds-converter/klechkhopfnjihobbcfeheooaigjjgdg
Description Click this icon to convert moneyline odds into implied probability, and vice versa.
File Size 946 KB
Installation Count 26
Current Version 1.1
Last Updated 2018-11-17
Publish Date 2018-11-17
Rating 5.00/5 Total 1 Ratings
Developer dylan.potter.oconnell
Payment Type in_app
Extension Website https://dylanpotteroconnell.github.io/
Supported Languages 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"
    ]
}