Odds Converter

Click this icon to convert moneyline odds into implied probability, and vice versa.

Odds Converter란 무엇입니까?

Odds Converter은(는) dylan.potter.oconnell에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Click this icon to convert moneyline odds into implied probability, and vice versa."입니다.

확장 프로그램 스크린샷

screenshot

Odds Converter 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This app offers a convenient way to convert between odds presented in fractional, moneyline, and implied odds format on the fly. It does this in two ways.

1. Click the Odds Converter icon in the toolbar to translate any odds written in plain text on the current page into the format of implied odds. You can click the icon again to translate it back to moneyline format, although the app will not record the original format.

2. If you select any text and right click it, you can select the button which says "Open Odds Converter", which will bring you to a simple page which lets you type in odds in any format, and see the conversions continuously update as you type. Frequently odds won't be written in the right plaintext format, and this is a catchall for those cases.

This is a side project done by someone with limited knowledge of Javascript, so the app's functionality is limited. However, it is quite convenient for this narrow purpose.                    

확장 프로그램 기본 정보

이름 Odds Converter Odds Converter
ID klechkhopfnjihobbcfeheooaigjjgdg
공식 URL https://chrome.google.com/webstore/detail/odds-converter/klechkhopfnjihobbcfeheooaigjjgdg
설명 Click this icon to convert moneyline odds into implied probability, and vice versa.
파일 크기 946 KB
설치 횟수 26
현재 버전 1.1
최근 업데이트 2018-11-17
출시 날짜 2018-11-17
평점 5.00/5 총 1 개의 평점
개발자 dylan.potter.oconnell
결제 유형 in_app
확장 프로그램 웹 사이트 https://dylanpotteroconnell.github.io/
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Odds Converter",
    "description": "Click this icon to convert moneyline odds into implied probability, and vice versa.",
    "version": "1.1",
    "background": {
        "scripts": [
            "background.js",
            "rightclick.js"
        ]
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon48.png",
        "default_title": "Convert Odds"
    },
    "permissions": [
        "activeTab",
        "contextMenus"
    ]
}