Full page screen capture

Full page screen capture

Make a full page screenshot of your current browser window .

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_name__",
  "version": "1.0.3",
  "commands": {
    "visible_screenshot": {
      "description": "visible screenshot"
    },
    "entire_page_screenshot": {
      "description": "Entire Page Screenshot"
    }
  },
  "manifest_version": 2,
  "description": "__MSG_description__",
  "icons": {
    "16": "images/iconfinder_capture_16.png",
    "32": "images/iconfinder_capture_32.png",
    "48": "images/iconfinder_capture_48.png",
    "64": "images/iconfinder_capture_64.png",
    "128": "images/iconfinder_capture_128.png"
  },
  "background": {
    "page": "background.html"
  },
  "browser_action": {
    "default_icon": {
      "16": "images/iconfinder_capture_16.png",
      "32": "images/iconfinder_capture_32.png",
      "48": "images/iconfinder_capture_48.png",
      "64": "images/iconfinder_capture_64.png",
      "128": "images/iconfinder_capture_128.png"
    },
    "default_title": "Screenshot Extension",
    "default_popup": "popup.html"
  },
  "web_accessible_resources": [
    "/images/*.png",
    "/css/pagestyles.css",
    "/css/dialog.css",
    "/libs/gapi.js",
    "/libs/jquery.js",
    "/js/dialog.js"
  ],
  "container": [
    "GOOGLE_DRIVE"
  ],
  "offline_enabled": true,
  "default_locale": "en",
  "permissions": [
    "activeTab"
  ],
  "optional_permissions": [
    "desktopCapture"
  ],
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'"
}