Screen Capture - Screenshot Tool

Screen Capture - Screenshot Tool

Screen capture, full page screen shot, visible area screenshot, edit print screen, save snapshot in PNG, PDF.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "default_locale": "en",
  "version": "1.0.18",
  "action": {
    "default_popup": "src/layouts/popup.html",
    "default_icon": "images/128.png"
  },
  "permissions": [
    "storage",
    "downloads",
    "tabs",
    "unlimitedStorage"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start",
      "js": [
        "src/js/contentScript.js",
        "/libs/jquery.js",
        "/libs/detect_zoom.js",
        "/libs/cropper.js",
        "/libs/plugin.js",
        "/libs/fabric.js"
      ],
      "all_frames": true
    }
  ],
  "background": {
    "service_worker": "src/js/serviceWorker.js",
    "type": "module"
  },
  "icons": {
    "32": "images/32.png",
    "64": "images/64.png",
    "128": "images/128.png"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "host_permissions": [
    "<all_urls>"
  ]
}