Screenshot Capture (Allstyls)

Screenshot Capture (Allstyls)

Screenshot Capture

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Screenshot Capture (Allstyls)",
  "author": "Amrita Sharma",
  "version": "1.7",
  "manifest_version": 2,
  "minimum_chrome_version": "49",
  "description": "Screenshot Capture",
  "browser_action": {
    "default_icon": "images/icon.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/icon.png",
    "22": "images/icon.png",
    "32": "images/icon.png",
    "48": "images/icon.png",
    "128": "images/icon.png"
  },
  "homepage_url": "https://www.allstyls.com",
  "permissions": [
    "storage",
    "activeTab"
  ]
}