AMBOSS SI Estimator

Extension for AMBOSS to give a rough estimate for conversion of reference measurements in tables to SI units

AMBOSS SI Estimator란 무엇입니까?

AMBOSS SI Estimator은(는) nclarke.dev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Extension for AMBOSS to give a rough estimate for conversion of reference measurements in tables to SI units"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

AMBOSS SI Estimator 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Amboss is a popular knowledge platform for doctors and students, even outside of the US. As such, units questions are presented in become an inconvenience. This extension was built with the purpose of providing users with an on-screen ESTIMATE of imperial units to SI to give them a general idea of what values to expect using the provided table as reference.
Units are converted in a linear fashion and as such, values on the extremes of the conversion ranges will not be as accurate; this is meant to be an aid, not to give you exact calculations (currently).                    

확장 프로그램 기본 정보

이름 AMBOSS SI Estimator AMBOSS SI Estimator
ID homobpnffkdegodnhkbdnkbfopfdihmp
공식 URL https://chromewebstore.google.com/detail/amboss-si-estimator/homobpnffkdegodnhkbdnkbfopfdihmp
설명 Extension for AMBOSS to give a rough estimate for conversion of reference measurements in tables to SI units
파일 크기 1.16 MB
설치 횟수 67
현재 버전 0.1.0
최근 업데이트 2021-10-06
출시 날짜 2021-10-06
평점 5.00/5 총 1 개의 평점
개발자 nclarke.dev
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://www.privacypolicies.com/live/2d18b392-9a85-4c12-b1f7-37892358a5fd
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "AMBOSS SI Estimator",
    "description": "Extension for AMBOSS to give a rough estimate for conversion of reference measurements in tables to SI units",
    "author": "Neil Clarke",
    "version": "0.1.0",
    "manifest_version": 3,
    "icons": {
        "16": "\/images\/logox16.png",
        "32": "\/images\/logox32.png",
        "48": "\/images\/logox48.png",
        "128": "\/images\/logox128.png"
    },
    "options_page": "\/layouts\/options.html",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/next.amboss.com\/*"
            ],
            "js": [
                "\/scripts\/content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "action": {
        "default_icon": "\/images\/logox16.png",
        "default_popup": "\/layouts\/popup.html",
        "default_title": "Unit Conversion"
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "host_permissions": [
        "https:\/\/next.amboss.com\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "\/data\/lab_table.json"
            ],
            "matches": [
                "https:\/\/next.amboss.com\/*"
            ]
        }
    ]
}