Save As MHT

Save As MHT

Save page as `.mht` files.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Save As MHT",
  "version": "0.2.0",
  "short_name": "SaveAsMHT",
  "description": "Save page as `.mht` files.",
  "homepage_url": "https://github.com/vsDizzy/SaveAsMHT",
  "icons": {
    "128": "mht-icon.png"
  },
  "action": {
    "default_icon": {
      "128": "mht-icon.png"
    }
  },
  "background": {
    "service_worker": "dist/worker.js",
    "type": "module"
  },
  "permissions": [
    "tabs",
    "pageCapture",
    "downloads",
    "contextMenus"
  ],
  "host_permissions": [
    "file:///*"
  ],
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Alt+Shift+S"
      }
    }
  }
}