Wrap · Screenshot Capture & Editor

Wrap · Screenshot Capture & Editor

Capture and edit beautiful, shareable product 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": "Wrap · Screenshot Capture & Editor",
  "version": "2.1.1",
  "description": "Capture and edit beautiful, shareable product screenshots.",
  "permissions": [
    "tabs",
    "<all_urls>",
    "storage",
    "*://*.wrap.so/*"
  ],
  "background": {
    "scripts": [
      "static/js/background.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "static/js/content.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "icons": {
    "192": "icon.png"
  },
  "browser_action": {
    "default_icon": {
      "192": "icon.png"
    },
    "default_title": "Popup",
    "default_popup": "popup.html"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Alt+W",
        "linux": "Alt+W",
        "windows": "Alt+W",
        "mac": "Alt+W"
      }
    }
  },
  "options_ui": {
    "page": "options.html"
  }
}