Larger image finder

Finds larger or original versions of images for 7800+ websites
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "background": {
    "service_worker": "js/background.js"
  },
  "action": {
    "default_popup": "html/popup.html",
    "default_title": "__MSG_extName__"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/content.js"
      ]
    }
  ],
  "icons": {
    "16": "icons/icon-16.png",
    "48": "icons/icon-48.png",
    "128": "icons/icon-128.png"
  },
  "options_ui": {
    "page": "html/options.html",
    "open_in_tab": true
  },
  "default_locale": "en",
  "manifest_version": 3,
  "name": "__MSG_extName__",
  "description": "__MSG_extShortDesc__",
  "permissions": [
    "alarms",
    "contextMenus",
    "cookies",
    "declarativeNetRequest",
    "downloads",
    "scripting",
    "storage"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "optional_permissions": [
    "history",
    "clipboardWrite"
  ],
  "version": "1.0.0",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}