Examine source code of Save Page WE

Inspect and view changes in Save Page WE 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",
  "manifest_version": 3,
  "name": "Save Page WE",
  "version": "33.9",
  "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"
  },
  "minimum_chrome_version": "88",
  "permissions": [
    "tabs",
    "webNavigation",
    "downloads",
    "contextMenus",
    "scripting",
    "notifications",
    "storage"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*",
    "file:///*"
  ],
  "action": {
    "default_icon": {
      "16": "icon16.png"
    },
    "default_title": "Save Page WE"
  },
  "background": {
    "service_worker": "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": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "file:///*"
      ],
      "resources": [
        "download-iframe-GC.html",
        "download-iframe-GC-dev.html",
        "download-iframe-MF.html",
        "download-script.js",
        "content-fontface-intercept.js"
      ]
    }
  ],
  "commands": {
    "_execute_action": {
      "description": "Save Page",
      "suggested_key": {
        "default": "Alt+A"
      }
    },
    "cancelsave": {
      "description": "Cancel Save",
      "suggested_key": {
        "default": "Alt+C"
      }
    }
  }
}