Webpage to PDF Converter

Webpage to PDF Converter

Install webpage to PDF converter & capture entire webpage as pdf. Or edit PDF and download with one click.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "1.2",
  "default_locale": "en",
  "name": "__MSG_appTitle__",
  "description": "Install webpage to PDF converter & capture entire webpage as pdf. Or edit PDF and download with one click.  ",
  "background": {
    "service_worker": "background/background.js"
  },
  "action": {
    "default_popup": "index.html",
    "default_icon": "Icons/icon64.png"
  },
  "icons": {
    "16": "Icons/icon16.png",
    "32": "Icons/icon32.png",
    "64": "Icons/icon64.png",
    "128": "Icons/icon128.png",
    "2000": "Icons/icon2000.png"
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "libs/jquery.min.js",
        "content/content.js"
      ],
      "css": [
        "css/styles.css"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "downloads",
    "notifications",
    "storage",
    "gcm",
    "scripting"
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "redo.png",
        "undo.png",
        "webpagetopdfconverter.png"
      ]
    }
  ]
}