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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 |
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" } } |