Save All Tabs as HTML

Save All Tabs as HTML

It saves the page as an HTML file. Whenever you open a new page, it is automatically saved into your local drive. If you want to…

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 All Tabs as HTML",
  "version": "1.0",
  "permissions": [
    "scripting",
    "https://www.naukri.com/*"
  ],
  "action": {},
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}