Examine source code of Image ratio preview

Inspect and view changes in Image ratio preview 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": "Image ratio preview",
  "action": {},
  "manifest_version": 3,
  "version": "0.1",
  "description": "Check image ratio in context menu.",
  "permissions": [
    "contextMenus"
  ],
  "icons": {
    "16": "icons/16.png",
    "32": "icons/32.png",
    "128": "icons/128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_idle",
      "js": [
        "content.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  }
}