Snap-Desk: Capture ScreenShots as PDF Notes

Snap-Desk: Capture ScreenShots as PDF Notes

A powerful extension to capture screenshots of any desktop window or browser tab, Add text notes, and Save them as PDF files.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Snap-Desk: Capture ScreenShots as PDF Notes",
  "version": "1.0.0.0",
  "manifest_version": 3,
  "description": "A powerful extension to capture screenshots of any desktop window or browser tab, Add text notes, and Save them as PDF files.",
  "icons": {
    "128": "/logo/logo128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "/SideBar/SideBar.html"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "/content-script.js"
      ]
    }
  ],
  "action": {},
  "background": {
    "service_worker": "/background.js"
  },
  "permissions": [
    "activeTab"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}