Simple Shot

Simple Shot

Saves a PNG screenshot of the current tab.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_app_name__",
  "description": "__MSG_app_description__",
  "version": "1.0",
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "activeTab",
    "contextMenus",
    "downloads"
  ],
  "commands": {
    "take-screenshot": {
      "description": "__MSG_context_menu_take_screenshot__"
    }
  },
  "icons": {
    "16": "assets/logo16.png",
    "48": "assets/logo48.png",
    "128": "assets/logo128.png"
  },
  "default_locale": "en",
  "manifest_version": 2
}