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.」です。

拡張機能のスクリーンショット

screenshot

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.                    

拡張機能の基本情報

名前 Odds Converter Odds Converter
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"
    ]
}