Screenshot Full Page

Screenshot Full Page

A smart screenshot capturing tool which provides you lot of powers with perfect results to capture your important web pages or…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Screenshot Full Page",
  "short_name": "Screenshot",
  "offline_enabled": true,
  "version": "1.0.5",
  "manifest_version": 2,
  "author": "Rahul Baruri <[email protected]>",
  "icons": {
    "16": "images/icons/16.png",
    "32": "images/icons/32.png",
    "48": "images/icons/48.png",
    "128": "images/icons/128.png",
    "256": "images/icons/256.png"
  },
  "background": {
    "scripts": [
      "/js/background.js"
    ]
  },
  "permissions": [
    "*://*/*",
    "<all_urls>",
    "storage",
    "unlimitedStorage"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "/js/contentScript.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "browser_action": {
    "default_icon": "images/icons/32.png",
    "default_popup": "popup.html"
  },
  "web_accessible_resources": [
    "/css/injectable.css",
    "editor.html"
  ]
}