PDF-XChange

PDF-XChange

Convert webpages to PDF files

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "default_locale": "en",
  "name": "PDF-XChange",
  "version": "1.4.1",
  "description": "__MSG_ExtensionDescription__",
  "permissions": [
    "pageCapture",
    "nativeMessaging",
    "contextMenus",
    "storage",
    "tabs",
    "scripting"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": {
      "16": "images/ico.app.disabled.16.png",
      "24": "images/ico.app.disabled.24.png",
      "32": "images/ico.app.disabled.32.png",
      "48": "images/ico.app.disabled.48.png",
      "64": "images/ico.app.disabled.64.png",
      "72": "images/ico.app.disabled.72.png",
      "96": "images/ico.app.disabled.96.png",
      "128": "images/ico.app.disabled.128.png"
    },
    "default_popup": "popup/index.html"
  },
  "content_scripts": [
    {
      "js": [
        "libs/jquery-3.4.1.min.js",
        "content.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "ftp://*/*",
        "file:///*"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "16": "images/ico.app.16.png",
    "24": "images/ico.app.24.png",
    "32": "images/ico.app.32.png",
    "48": "images/ico.app.48.png",
    "64": "images/ico.app.64.png",
    "72": "images/ico.app.72.png",
    "96": "images/ico.app.96.png",
    "128": "images/ico.app.128.png"
  },
  "minimum_chrome_version": "88.0",
  "web_accessible_resources": [
    {
      "resources": [
        "menu-iframe/index.html",
        "frame.html",
        "native-part-is-not-installed.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}