Webpage to Markdown and PDF

Webpage to Markdown and PDF

A Chrome extension to capture web page to markdown and PDF format

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Webpage to Markdown and PDF",
  "version": "1.0",
  "description": "A Chrome extension to capture  web page to markdown and PDF format",
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "48": "icons48.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content.js",
        "Readability.js"
      ]
    }
  ],
  "icons": {
    "48": "icons48.png"
  }
}