Page Screenshot

Page Screenshot

Take a screenshot from the entire website with just one click.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "version": "0.1.4",
  "manifest_version": 2,
  "offline_enabled": true,
  "name": "Page Screenshot",
  "short_name": "page-screenshot",
  "optional_permissions": [
    "<all_urls>"
  ],
  "permissions": [
    "storage",
    "activeTab"
  ],
  "background": {
    "page": "lib/chrome/background.html"
  },
  "homepage_url": "https://mybrowseraddon.com/page-screenshot.html",
  "description": "Take a screenshot from the entire website with just one click!",
  "options_ui": {
    "open_in_tab": true,
    "chrome_style": true,
    "page": "data/options/options.html"
  },
  "browser_action": {
    "default_title": "Page Screenshot",
    "default_icon": {
      "16": "data/icons/16.png",
      "32": "data/icons/32.png",
      "48": "data/icons/48.png",
      "64": "data/icons/64.png"
    }
  },
  "commands": {
    "capture": {
      "description": "Take screenshot",
      "suggested_key": {
        "default": "Alt+Shift+D"
      }
    }
  },
  "icons": {
    "16": "data/icons/16.png",
    "32": "data/icons/32.png",
    "48": "data/icons/48.png",
    "64": "data/icons/64.png",
    "128": "data/icons/128.png"
  }
}