Capture Screenshots

Capture Screenshots

Capture Screenshot anytime

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Capture Screenshots",
  "version": "2.0",
  "description": "Capture Screenshot anytime ",
  "browser_action": {
    "default_icon": {
      "19": "/images/icon19.png",
      "38": "/images/icon38.png"
    },
    "default_title": "Screenshot Capture"
  },
  "options_page": "/content/options.html",
  "background": {
    "scripts": [
      "background/background.js"
    ],
    "persistent": false
  },
  "web_accessible_resources": [
    "/images/Jcrop.gif",
    "/images/pixel.png"
  ],
  "commands": {
    "take-screenshot": {
      "suggested_key": {
        "default": "Alt+S"
      },
      "description": "Take Screenshot"
    }
  },
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "homepage_url": "https://chrome.google.com/webstore/detail/screenshot-capture/giabbpobpebjfegnpcclkocepcgockkc",
  "permissions": [
    "storage",
    "activeTab"
  ]
}