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.5",
  "manifest_version": 2,
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "static/128.png",
    "default_title": "Take Screenshot"
  },
  "icons": {
    "48": "static/48.png",
    "128": "static/128.png"
  },
  "permissions": [
    "activeTab",
    "downloads"
  ],
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Alt+P"
      }
    }
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "homepage_url": "https://browsernative.com/screenshot-extension/"
}