Screenshot

Screenshot

Quickly take screenshot of current tab. Keyboard Commnd: Alt+P.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Screenshot",
  "description": "Quickly take screenshot of current tab. Keyboard Commnd: Alt+P.",
  "version": "0.0.6",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": "static/128.png",
    "default_title": "Take Screenshot"
  },
  "icons": {
    "48": "static/48.png",
    "128": "static/128.png"
  },
  "permissions": [
    "activeTab",
    "downloads",
    "storage"
  ],
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Alt+P"
      }
    }
  },
  "options_page": "options.html",
  "homepage_url": "https://browsernative.com/screenshot-extension/"
}