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.”。

扩展截图

screenshot

下载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                    

扩展基本信息

名称 Odds to Probability Text Changer Odds to Probability Text Changer
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
电子邮箱 [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"
    }
}