Just-One-Page-PDF

Just-One-Page-PDF

Save any web page just a one-page PDF

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "action": {
    "default_title": "__MSG_AppName__",
    "default_popup": "popup.html",
    "default_icon": {
      "16": "icons/icon-16.png",
      "32": "icons/icon-32.png"
    }
  },
  "background": {
    "service_worker": "js/background.js",
    "type": "module"
  },
  "default_locale": "en",
  "description": "__MSG_AppDesc__",
  "homepage_url": "https://soft.xiaoshujiang.com",
  "icons": {
    "16": "icons/icon-16.png",
    "32": "icons/icon-32.png",
    "512": "icons/icon-512.png"
  },
  "manifest_version": 3,
  "name": "__MSG_AppName__",
  "offline_enabled": true,
  "options_page": "setting.html",
  "host_permissions": [
    "<all_urls>"
  ],
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Alt+Shift+J"
      }
    },
    "print_selection_node": {
      "suggested_key": {
        "default": "Alt+Shift+N"
      },
      "description": "print selection node"
    },
    "print_selection_area": {
      "suggested_key": {
        "default": "Alt+Shift+M"
      },
      "description": "print selection area"
    }
  },
  "permissions": [
    "activeTab",
    "contextMenus",
    "scripting",
    "debugger",
    "downloads",
    "storage",
    "management",
    "tabs",
    "notifications"
  ],
  "version": "0.8.4",
  "content_security_policy": {
    "extension_pages": "object-src 'self';script-src 'self' 'wasm-unsafe-eval'"
  }
}