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”。
擴展截圖
下載AMBOSS SI Estimator擴展crx文件
下載AMBOSS SI Estimator擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
ID | homobpnffkdegodnhkbdnkbfopfdihmp |
官方網址 | 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\/*" ] } ] } |