Examine source code of Metric Me Up!

Inspect and view changes in Metric Me Up! source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Metric Me Up!",
  "description": "Hover over an Imperial unit on any web page to get a metric conversion",
  "version": "0.1",
  "manifest_version": 3,
  "icons": {
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "convert.js"
      ],
      "css": [
        "tooltip.css"
      ],
      "run_at": "document_idle"
    }
  ]
}