Easy Screenshot - a Web Clipper

Easy Screenshot - a Web Clipper

all-in-on capturing tool for the visual part, the entire page, or a selective area with auto-scrolling and editing support

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Easy Screenshot - a Web Clipper",
  "description": "__MSG_description__",
  "default_locale": "en",
  "version": "0.5.0",
  "manifest_version": 3,
  "permissions": [
    "contextMenus",
    "activeTab",
    "scripting",
    "downloads",
    "notifications",
    "storage",
    "debugger"
  ],
  "offline_enabled": true,
  "background": {
    "service_worker": "worker.js"
  },
  "homepage_url": "https://webextension.org/listing/screenshot.html",
  "icons": {
    "16": "/data/icons/16.png",
    "20": "/data/icons/20.png",
    "24": "/data/icons/24.png",
    "32": "/data/icons/32.png",
    "48": "/data/icons/48.png",
    "64": "/data/icons/64.png",
    "128": "/data/icons/128.png",
    "256": "/data/icons/256.png",
    "512": "/data/icons/512.png"
  },
  "options_ui": {
    "page": "/data/options/index.html"
  },
  "action": {
    "default_popup": "/data/popup/index.html"
  },
  "commands": {
    "_execute_action": {},
    "capture-visual": {
      "description": "Capture Visual Part"
    },
    "capture-portion": {
      "description": "Capture a Portion"
    },
    "capture-entire": {
      "description": "Capture Entire Screen (steps)"
    },
    "capture-entire-debugger": {
      "description": "Capture Entire Screen (debugger)"
    },
    "capture-entire-debugger-steps": {
      "description": "Capture Entire Screen (debugger + steps)"
    }
  }
}