Save tabs as HTML

Save tabs as HTML

Save list of open tabs as an HTML file.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Save tabs as HTML",
  "description": "Save list of open tabs as an HTML file.",
  "manifest_version": 2,
  "version": "0.3.2",
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "64": "icons/icon64.png",
    "96": "icons/icon96.png",
    "128": "icons/icon128.png"
  },
  "permissions": [
    "tabs",
    "downloads"
  ],
  "browser_action": {
    "default_icon": "icons/icon128.png",
    "default_title": "Save tabs as HTML."
  },
  "background": {
    "scripts": [
      "save_tabs.js"
    ]
  }
}