Super Save Image As

Super Save Image As

Save images as png, jpg, or webp by right-clicking on an image. Adds a new context menu to save images in a variety of formats.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Super Save Image As",
  "version": "1.0",
  "manifest_version": 3,
  "description": "Save images as png, jpg, or webp by right-clicking on an image. Adds a new context menu to save images in a variety of formats.",
  "background": {
    "service_worker": "scripts/background.js"
  },
  "action": {
    "default_icon": "images/16x16.png",
    "default_title": "Super Save Image As",
    "default_popup": "popup.html"
  },
  "permissions": [
    "downloads",
    "contextMenus",
    "offscreen",
    "activeTab",
    "scripting",
    "storage"
  ],
  "host_permissions": [
    "http://*/",
    "https://*/"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "scripts/content/getImages.js"
      ],
      "run_at": "document_start"
    }
  ],
  "icons": {
    "48": "images/48x48.png",
    "128": "images/128x128.png"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}