AMBOSS SI Estimator

AMBOSS SI Estimator

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

Merlin
Additional files are visible only to premium users

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/*"
      ]
    }
  ]
}