Screenshot2HTML

Screenshot2HTML

Take a full page screenshot and save it as an offline HTML file.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "version": "1.4.23",
  "name": "__MSG_Extension_Name__",
  "description": "__MSG_Extension_Description__",
  "homepage_url": "https://github.com/jakwings/screenshot2html",
  "default_locale": "en",
  "browser_specific_settings": {
    "gecko": {
      "id": "{20220220-2202-8179-8def-c2cc235ad62f}",
      "strict_min_version": "52.0"
    }
  },
  "background": {
    "scripts": [
      "utils.js",
      "config.js",
      "background.js"
    ]
  },
  "options_ui": {
    "page": "options.html",
    "browser_style": true
  },
  "browser_action": {
    "default_icon": "icons/icon.png",
    "browser_style": true
  },
  "icons": {
    "48": "icons/icon.png"
  },
  "permissions": [
    "<all_urls>",
    "tabs",
    "downloads",
    "notifications",
    "storage"
  ]
}