Handy Screenshot

Handy Screenshot

Capture the web page, either part of it or full page. Edit your screenshots in a very user-friendly interface. Replacement of 'Awesome screenshot capture' and 'Nimbus Screenshot' Click on icon or Press Alt twice to take screenshots

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Handy Screenshot",
  "description": "An easy tool for taking screenshots (full screen / visible part / selected by yourself)",
  "version": "1.2.20",
  "author": "ohhandy.com",
  "icons": {
    "256": "logo.png"
  },
  "browser_action": {
    "default_icon": {
      "38": "logo.png"
    }
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content_script.js"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    "capture.html",
    "capture.js"
  ],
  "permissions": [
    "storage",
    "notifications",
    "contextMenus",
    "clipboardWrite",
    "<all_urls>"
  ]
}