Full Page Screen Capture

Full Page Screen Capture

One click Full page screenshots of any webpage. Capture Full pages with ease

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appTitle__",
  "version": "0.0.2",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "permissions": [
    "tabs",
    "storage",
    "downloads",
    "scripting",
    "notifications",
    "gcm"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_title": "Chrome Extension",
    "default_icon": {
      "16": "Icons/icon16.png",
      "32": "Icons/icon32.png",
      "64": "Icons/icon64.png",
      "128": "Icons/icon128.png",
      "2000": "Icons/icon2000.png"
    }
  },
  "icons": {
    "16": "Icons/icon16.png",
    "32": "Icons/icon32.png",
    "64": "Icons/icon64.png",
    "128": "Icons/icon128.png",
    "2000": "Icons/icon2000.png"
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "background": {
    "service_worker": "background/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "libs/jquery.min.js",
        "contentScript/content.js"
      ]
    }
  ],
  "manifest_version": 3
}