Odds to Probability Text Changer
Click this extension to convert all American odds on a webpage to implied probability.
O que é Odds to Probability Text Changer?
Odds to Probability Text Changer é uma extensão do Chrome desenvolvida por dannyhines5, e sua principal característica é "Click this extension to convert all American odds on a webpage to implied probability.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Odds to Probability Text Changer
Baixe arquivos de extensão Odds to Probability Text Changer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | Odds to Probability Text Changer |
ID | nofjpbibnnkinmfndoknlbkchbecgbkb |
URL Oficial | https://chromewebstore.google.com/detail/odds-to-probability-text/nofjpbibnnkinmfndoknlbkchbecgbkb |
Descrição | Click this extension to convert all American odds on a webpage to implied probability. |
Tamanho do Arquivo | 73.53 KB |
Contagem de Instalações | 67 |
Versão Atual | 3.3 |
Última Atualização | 2022-12-17 |
Data de Publicação | 2021-10-26 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | dannyhines5 |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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" } } |