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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Click this extension to convert all American odds on a webpage to implied probability."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Odds to Probability Text Changer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
    }
}