PDFmyURL

PDFmyURL

Save any WebPage as PDF

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "persistent": true,
    "scripts": [
      "js/jquery.js",
      "js/background.js"
    ]
  },
  "browser_action": {
    "default_icon": "images/icon_16.png",
    "default_popup": "popup.html"
  },
  "description": "Save any WebPage as PDF",
  "icons": {
    "16": "images/icon_16.png",
    "32": "images/icon_32.png",
    "64": "images/icon_64.png"
  },
  "options_ui": {
    "page": "options.html"
  },
  "content_scripts": [
    {
      "js": [
        "js/jquery.js",
        "js/htmlminifier.min.js",
        "js/getPagesSource.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end"
    }
  ],
  "manifest_version": 2,
  "name": "PDFmyURL",
  "permissions": [
    "tabs",
    "downloads",
    "storage",
    "activeTab",
    "https://pdfmyurl.com/*"
  ],
  "version": "1.0"
}