Save Page WE

Save Page WE

Save a complete web page (as currently displayed) as a single HTML file that can be opened in any browser. Save a single page, multiple selected pages or a list of page URLs. Automate saving from command line.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Save Page WE",
  "version": "28.11",
  "description": "Save a complete web page (as curently displayed) as a single HTML file that can be opened in any browser.",
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "64": "icon64.png",
    "128": "icon128-96.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "savepage-we@DW-dev",
      "strict_min_version": "52.0"
    }
  },
  "permissions": [
    "http://*/*",
    "https://*/*",
    "file:///*",
    "tabs",
    "webNavigation",
    "webRequest",
    "webRequestBlocking",
    "downloads",
    "contextMenus",
    "notifications",
    "storage"
  ],
  "browser_action": {
    "browser_style": false,
    "default_icon": {
      "16": "icon16.png"
    },
    "default_title": "Save Page WE"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "file:///*"
      ],
      "js": [
        "content-fontface.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "web_accessible_resources": [
    "message-panel.html",
    "lazyload-panel.html",
    "unsaved-panel.html",
    "comments-panel.html",
    "pageinfo-panel.html",
    "pageinfo-bar-compressed.html",
    "shadowloader-compressed.js"
  ],
  "commands": {
    "_execute_browser_action": {
      "description": "Save Page",
      "suggested_key": {
        "default": "Alt+A"
      }
    },
    "cancelsave": {
      "description": "Cancel Save",
      "suggested_key": {
        "default": "Alt+C"
      }
    }
  }
}