SimpleShot

SimpleShot

Capture a picture of any page with the click of a button

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "SimpleShot",
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+1",
        "windows": "Ctrl+Shift+1",
        "mac": "MacCtrl+Shift+1",
        "chromeos": "Ctrl+Shift+1",
        "linux": "Ctrl+Shift+1"
      }
    }
  },
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "options_page": "options.html",
  "version": "1.0.2",
  "description": "Capture a picture of any page with the click of a button",
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "img/camera.png",
    "default_title": "Click to take a screenshot..."
  },
  "permissions": [
    "activeTab"
  ],
  "manifest_version": 2
}