Screenshot

Screenshot

Take a screenshot of the entire page, your current screen or part of it!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Screenshot",
  "version": "1.5",
  "description": "Quick and easy screen capture of the current window, all in one click.",
  "icons": {
    "128": "icons/128.png"
  },
  "background": {
    "scripts": [
      "utils/iconupdater.js",
      "utils/storage.js",
      "_globals.js",
      "lib/crc32.js",
      "imagecomments.js",
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "icons/128.png",
    "browser_style": true,
    "default_popup": "popup/choose_format.html",
    "theme_icons": [
      {
        "dark": "icons/128.png",
        "light": "icons/128.png",
        "size": 19
      }
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "utils/storage.js",
        "contentscript.js"
      ]
    }
  ],
  "options_ui": {
    "page": "options.html",
    "browser_style": true
  },
  "commands": {
    "full-png": {
      "description": "Full page (PNG)"
    },
    "full-jpg": {
      "description": "Full page (JPEG)"
    },
    "full-copy": {
      "description": "Full page (Copy)"
    },
    "viewport-png": {
      "description": "Viewport (PNG)"
    },
    "viewport-jpg": {
      "description": "Viewport (JPEG)"
    },
    "viewport-copy": {
      "description": "Viewport (Copy)"
    },
    "selection-png": {
      "description": "Selection (PNG)"
    },
    "selection-jpg": {
      "description": "Selection (JPEG)"
    },
    "selection-copy": {
      "description": "Selection (Copy)"
    }
  },
  "permissions": [
    "<all_urls>",
    "contextMenus",
    "notifications",
    "storage",
    "downloads",
    "clipboardWrite"
  ],
  "default_locale": "en",
  "browser_specific_settings": {
    "gecko": {
      "id": "{91bc86bc-e995-46fb-8cf3-51ce13181115}"
    }
  }
}