One-click Screenshot

One-click Screenshot

Take screenshots of entire websites. Alt+Shift+S is the default shortcut (Option+Shift+S on Mac).

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "One-click Screenshot",
  "version": "0.0.4",
  "description": "Take screenshots of entire websites. Alt+Shift+S is the default shortcut (Option+Shift+S on Mac).",
  "homepage_url": "https://github.com/stefansundin/one-click-screenshot",
  "author": "Stefan Sundin",
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "19": "img/icon19.png",
      "38": "img/icon38.png"
    },
    "default_title": "One-click Screenshot",
    "default_popup": "popup.html"
  },
  "commands": {
    "take-screenshot": {
      "suggested_key": {
        "default": "Alt+Shift+S"
      },
      "description": "Take a screenshot"
    }
  },
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "web_accessible_resources": [
    "js/content_script.js"
  ],
  "minimum_chrome_version": "55",
  "manifest_version": 2
}