Quick Shot

Quick Shot

Capture screen shots of your web browser and download them automatically.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Quick Shot",
  "version": "0.0.1",
  "manifest_version": 2,
  "description": "Capture screen shots of your web browser and download them automatically.",
  "permissions": [
    "tabs",
    "<all_urls>"
  ],
  "background": {
    "scripts": [
      "capture.js"
    ]
  },
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "browser_action": {
    "default_icon": "images/icon.png",
    "default_title": "Capture and download screen shots!"
  }
}