Screenshotter by Copperpod

Screenshotter by Copperpod

This extension allows the user to take a full page screenshot of the active tab. To capture, click on the extension icon.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Screenshotter by Copperpod",
  "version": "1.1",
  "manifest_version": 2,
  "description": "This extension allows the user to take a full page screenshot of the active tab. To capture, click on the extension icon.",
  "browser_action": {
    "default_icon": "icon48.png",
    "default_popup": "popup.html"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Alt+9",
        "mac": "MacCtrl+9"
      }
    }
  },
  "permissions": [
    "activeTab",
    "downloads"
  ],
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  }
}