PDF Combiner: Merge PDF Files

PDF Combiner: Merge PDF Files

PDF Combiner – Merge multiple PDF files into one document in seconds. Combine PDFs online and offline securely and for free.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "version": "1.0.1",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "minimum_chrome_version": "100",
  "icons": {
    "16": "src/icons/16.png",
    "32": "src/icons/32.png",
    "48": "src/icons/48.png",
    "64": "src/icons/64.png",
    "96": "src/icons/96.png",
    "128": "src/icons/128.png"
  },
  "action": {
    "default_title": "__MSG_extension_action_title__",
    "default_icon": {
      "16": "src/icons/16.png",
      "24": "src/icons/24.png",
      "32": "src/icons/32.png"
    }
  },
  "options_ui": {
    "open_in_tab": true,
    "page": "src/options/index.html"
  },
  "background": {
    "service_worker": "service-worker-loader.js",
    "type": "module"
  },
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "src/assets/*"
      ],
      "use_dynamic_url": true
    }
  ],
  "permissions": [
    "storage",
    "downloads",
    "contextMenus"
  ],
  "host_permissions": [
    "<all_urls>"
  ]
}