Odds to Probability Text Changer
Click this extension to convert all American odds on a webpage to implied probability.
Odds to Probability Text Changerとは何ですか?
Odds to Probability Text Changerはdannyhines5によって開発されたChromeの拡張機能で、その主な機能は「Click this extension to convert all American odds on a webpage to implied probability.」です。
拡張機能のスクリーンショット
Odds to Probability Text Changer拡張機能のCRXファイルをダウンロード
Odds to Probability Text Changer拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
                        This extension looks for American odds (such as "+140" or "-350") on the page, calculates the implied probability, and displays it as a percentage. For example, "+140" becomes "+140 (41.7%)"
Assuming the odds are "fair", the implied probability is the percentage chance that the bet is supposed to win. 
Because sportsbooks charge a fee or "vig" for placing bets, this number will appear slightly higher than the actual probability. 
This implied probability is simpler way to look at sports betting: a "good bet" is one where you believe the percentage chance is higher than the implied probability.
This project is open-source and available on Github: https://github.com/danielchines/odds-converter-extension                     拡張機能の基本情報
| 名前 |   |  
| ID | nofjpbibnnkinmfndoknlbkchbecgbkb | 
| 公式URL | https://chromewebstore.google.com/detail/odds-to-probability-text/nofjpbibnnkinmfndoknlbkchbecgbkb | 
| 説明 | Click this extension to convert all American odds on a webpage to implied probability. | 
| ファイルサイズ | 73.53 KB | 
| インストール数 | 67 | 
| 現在のバージョン | 3.3 | 
| 最終更新日 | 2022-12-17 | 
| 公開日 | 2021-10-26 | 
| 評価 | 5.00/5 合計 1 レビュー | 
| 開発者 | dannyhines5 | 
| Eメール | [email protected] | 
| 支払い方法 | free | 
| 対応言語 | en | 
| manifest.json | |
 {
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Odds to Probability Text Changer",
    "short_name": "Odds Converter",
    "description": "Click this extension to convert all American odds on a webpage to implied probability.",
    "version": "3.3",
    "manifest_version": 3,
    "author": "Danny Hines",
    "action": {
        "default_title": "Click to toggle odds conversion"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "all_frames": true,
            "js": [
                "content_script.js"
            ],
            "run_on": "document_end"
        }
    ],
    "icons": {
        "16": "\/images\/converter-icon16.png",
        "32": "\/images\/converter-icon32.png",
        "48": "\/images\/converter-icon48.png",
        "128": "\/images\/converter-icon128.png"
    }
}  |  |