Kofax PDF Create

Kofax PDF Create

Create PDF from web page

Merlin
Additional files are visible only to premium users

manifest.json


{
  "default_locale": "en",
  "name": "Kofax PDF Create",
  "description": "__MSG_web2pdfExtnDescription__",
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": "skin/action_disabled_19x19.png",
    "default_title": "__MSG_web2pdfBrowserActionToolTip__"
  },
  "content_scripts": [
    {
      "js": [
        "content-script.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "contextMenus",
    "nativeMessaging",
    "tabs",
    "storage"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "icons": {
    "16": "skin/logo_16x16.png",
    "48": "skin/logo_48x48.png",
    "128": "skin/logo_128x128.png"
  },
  "update_url": "https://clients2.google.com/service/update2/crx",
  "web_accessible_resources": [
    {
      "resources": [
        "content-frame.html"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self' ; object-src 'self'"
  },
  "version": "1.0.0.17",
  "manifest_version": 3
}