Save tabs to HTML file

Save tabs to HTML file

Save the title and URLs of open tabs as an HTML file.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Save tabs as HTML",
  "description": "Save list of open tabs as an HTML file.",
  "manifest_version": 2,
  "version": "0.3.4",
  "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"
    ]
  }
}