MultCloud Save - Save Webpage as PDF

MultCloud Save - Save Webpage as PDF

Save webpages in Chrome as PDF or images and save to the cloud or local.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "MultCloud Save - Save Webpage as PDF",
  "description": "Save webpages in Chrome as PDF or images and save to the cloud or local. ",
  "version": "1.1.0",
  "manifest_version": 3,
  "permissions": [
    "activeTab",
    "tabs",
    "scripting",
    "debugger",
    "contextMenus",
    "windows",
    "cookies",
    "notifications",
    "storage"
  ],
  "host_permissions": [
    "*://*.multcloud.com/"
  ],
  "externally_connectable": {
    "matches": [
      "https://www.multcloud.com/*"
    ]
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.multcloud.com/*"
      ],
      "js": [
        "jquery.min.js",
        "./auto-login.js"
      ],
      "run_at": "document_start",
      "persistent": true
    }
  ],
  "icons": {
    "16": "/logo.png",
    "32": "/logo.png",
    "48": "/logo.png",
    "128": "/logo.png"
  },
  "action": {
    "default_popup": "index.html",
    "default_icon": {
      "16": "/logo.png",
      "32": "/logo.png",
      "48": "/logo.png",
      "128": "/logo.png"
    }
  }
}