Screenshot Capture

Screenshot Capture

Capture viewport, crop & save to file, copy to clipboard as binary or data URL

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Screenshot Capture",
  "version": "3.1",
  "description": "Capture viewport, crop & save to file, copy to clipboard as binary or data URL",
  "homepage_url": "https://chromewebstore.google.com/detail/screenshot-capture/giabbpobpebjfegnpcclkocepcgockkc",
  "icons": {
    "16": "/icons/default/16x16.png",
    "19": "/icons/default/19x19.png",
    "38": "/icons/default/38x38.png",
    "48": "/icons/default/48x48.png",
    "128": "/icons/default/128x128.png"
  },
  "action": {
    "default_icon": {
      "16": "/icons/default/16x16.png",
      "19": "/icons/default/19x19.png",
      "38": "/icons/default/38x38.png",
      "48": "/icons/default/48x48.png",
      "128": "/icons/default/128x128.png"
    },
    "default_title": "Screenshot Capture"
  },
  "background": {
    "service_worker": "background/index.js"
  },
  "options_page": "/options/index.html",
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "/vendor/Jcrop.gif",
        "/content/pixel.png"
      ]
    }
  ],
  "commands": {
    "take-screenshot": {
      "description": "Take Screenshot",
      "suggested_key": {
        "default": "Alt+S"
      }
    }
  },
  "permissions": [
    "storage",
    "scripting",
    "activeTab"
  ]
}