screenseal

screenseal

Take court-admissible, timestamped website captures quickly and easily with screenseal

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "screenseal",
  "author": "globaleyez GmbH",
  "permissions": [
    "tabs",
    "activeTab",
    "storage",
    "downloads",
    "webRequest"
  ],
  "host_permissions": [
    "<all_urls>",
    "*://*/*"
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "*://*/*"
      ],
      "resources": [
        "screenseal-logo-white.png",
        "source_code_pro.ttf",
        "source_sans_pro.ttf",
        "preview.html"
      ]
    }
  ],
  "icons": {
    "16": "./screenseal-favicon-16.png",
    "32": "./screenseal-favicon-32.png",
    "64": "./screenseal-favicon-64.png",
    "128": "./screenseal-favicon-128.png",
    "256": "./screenseal-favicon-256.png",
    "512": "./screenseal-favicon-512.png"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "run_at": "document_start",
      "js": [
        "screenseal.js"
      ]
    }
  ],
  "commands": {
    "capture-whole-page": {
      "suggested_key": {
        "default": "Ctrl+Shift+E",
        "mac": "Command+Shift+E"
      },
      "description": "Capture the whole page of the currently active tab"
    },
    "capture-visible-part": {
      "suggested_key": {
        "default": "Ctrl+Shift+V",
        "mac": "Command+Shift+V"
      },
      "description": "Capture the visible part of the currently active tab"
    },
    "capture-selection": {
      "suggested_key": {
        "default": "Ctrl+Shift+S",
        "mac": "Command+Shift+S"
      },
      "description": "Capture a selectable part of the currently active tab"
    }
  },
  "version": "1.3.6",
  "description": "Take court-admissible, timestamped website captures quickly and easily with screenseal"
}