Lightweight Screenshot

Lightweight Screenshot

Take screenshots. Also works for full page and custom-size screenshots.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Lightweight Screenshot",
  "description": "Take screenshots. Also works for full page and custom-size screenshots.",
  "version": "1.1",
  "icons": {
    "19": "images/monitoriconsmall.png",
    "48": "images/monitoricon48.png",
    "128": "images/monitoricon.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "web_accessible_resources": [
    "images/cus.png",
    "image/vis.png",
    "images/full.png",
    "images/check.png",
    "images/cross.png"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "images/monitoriconsmall.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "activeTab",
    "<all_urls>",
    "downloads"
  ]
}