Screen Capture - full page

Screen Capture - full page

Screen capture your current page in entirety and reliably!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Screen Capture - full page",
  "version": "4.0.0",
  "manifest_version": 3,
  "description": "Screen capture your current page in entirety and reliably!",
  "action": {
    "default_icon": "icon-999.png",
    "default_popup": "popup.html"
  },
  "background.service_worker": {
    "scripts": [
      "jquery.min.js",
      "moment.min.js",
      "lodash.min.js"
    ]
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Alt+Shift+P"
      }
    }
  },
  "permissions": [
    "activeTab",
    "tabs",
    "scripting"
  ],
  "optional_permissions": [
    "unlimitedStorage"
  ],
  "host_permissions": [
    "http://*/",
    "https://*/",
    "*://*/*"
  ],
  "icons": {
    "16": "icon16-999.png",
    "48": "icon48-999.png",
    "128": "icon128-999.png"
  },
  "-ms-preload": {
    "backgroundScript": "backgroundScriptsAPIBridge.js",
    "contentScript": "contentScriptsAPIBridge.js"
  }
}