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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Extension for AMBOSS to give a rough estimate for conversion of reference measurements in tables to SI units"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में AMBOSS SI Estimator एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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\/*"
            ]
        }
    ]
}