Website to PDF

Website to PDF

Convert entire website to PDF file

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Website to PDF",
  "description": "Convert entire website to PDF file",
  "icons": {
    "24": "printer24x24.png",
    "48": "printer48x48.png",
    "64": "printer64x64.png"
  },
  "version": "1.1",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content_script.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {}
}