AMBOSS SI Estimator

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

AMBOSS SI Estimator là gì?

AMBOSS SI Estimator là một tiện ích mở rộng Chrome được phát triển bởi nclarke.dev, và tính năng chính của nó là "Extension for AMBOSS to give a rough estimate for conversion of reference measurements in tables to SI units".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng AMBOSS SI Estimator

Tải xuống các tệp mở rộng AMBOSS SI Estimator dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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).                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên AMBOSS SI Estimator AMBOSS SI Estimator
ID homobpnffkdegodnhkbdnkbfopfdihmp
URL Chính Thức https://chromewebstore.google.com/detail/amboss-si-estimator/homobpnffkdegodnhkbdnkbfopfdihmp
Mô tả Extension for AMBOSS to give a rough estimate for conversion of reference measurements in tables to SI units
Kích Thước Tệp 1.16 MB
Số Lần Cài Đặt 67
Phiên Bản Hiện Tại 0.1.0
Cập Nhật Lần Cuối 2021-10-06
Ngày Phát Hành 2021-10-06
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển nclarke.dev
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật https://www.privacypolicies.com/live/2d18b392-9a85-4c12-b1f7-37892358a5fd
Ngôn Ngữ Được Hỗ Trợ 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\/*"
            ]
        }
    ]
}