Save Website as Image

Save Website as Image

Simple addon, to save the full website of one or more tabs as a image either via a click on the toolbar icon or via a custom shotcut

Merlin
Additional files are visible only to premium users

manifest.json


{
  "author": "igorlogius",
  "homepage_url": "https://github.com/igorlogius",
  "background": {
    "scripts": [
      "FileSaver.js",
      "jszip.js",
      "background.js"
    ]
  },
  "browser_action": {
    "default_area": "navbar",
    "theme_icons": [
      {
        "light": "dark.png",
        "dark": "icon.png",
        "size": 128
      }
    ]
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Alt+S"
      }
    }
  },
  "icons": {
    "128": "icon.png"
  },
  "manifest_version": 2,
  "name": "Save Website as Image",
  "description": "Simple addon, to save the full website of one or more tabs as a png image either via a click on the toolbar icon or via a custom shotcut",
  "permissions": [
    "storage",
    "tabs",
    "<all_urls>"
  ],
  "optional_permissions": [
    "notifications"
  ],
  "options_ui": {
    "page": "options.html"
  },
  "version": "1.4.21",
  "browser_specific_settings": {
    "gecko": {
      "id": "{e36d3d91-3bd1-496a-a9c3-d6b2e8fb792d}"
    }
  }
}