Full Page Screen Capture

Full Page Screen Capture

Capture a screenshot of your current page in integrity

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Full Page Screen Capture",
  "description": "Capture a screenshot of your current page in integrity",
  "version": "0.0.1",
  "icons": {
    "16": "./assets/icon-128.png",
    "48": "./assets/icon-128.png",
    "128": "./assets/icon-128.png"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "action": {
    "default_icon": "./assets/icon-128.png",
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "js/vendor.js",
        "js/content_script.js"
      ]
    }
  ],
  "permissions": [
    "tabs"
  ],
  "host_permissions": [
    "https://*/*",
    "http://*/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "logo.svg"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    }
  ]
}