Fork of deathau/markdownload by @deathau Extended by @neo37 — Manifest V3 upgrade + bulk save features.
Primary use case: downloading entire wikis, documentation sites, or knowledge bases to local Markdown/HTML/PDF files.
The main idea is a two-step workflow:
-
Open all links — navigate to any index or list page (e.g. a wiki, docs site, or table of contents), then click "Open all links in new tabs (3s delay)". The extension opens every link on the page as a background tab, one every 3 seconds, giving each page time to fully render.
-
Save all tabs — once the tabs are loaded, click one of the "All tabs →" buttons to bulk-export everything at once:
- All → Markdown — converts each page using Readability + Turndown (best for text content)
- All → HTML — saves the full rendered DOM including dynamic content
- All → Screenshots — captures the visible viewport of each tab as PNG
- All → PDF — silently exports each tab as a PDF via Chrome DevTools Protocol (no print dialog)
All files land in ~/Downloads/page-saver/YYYY-MM-DD_HH-mm/ — each session gets its own timestamped folder.
- Manifest V3 — upgraded from MV2 so the extension loads in modern Chrome (127+)
- Open all links with configurable delay between tabs
- Bulk save — current tab or all open tabs → Markdown / HTML / PNG / PDF
- Silent PDF export via Chrome DevTools Protocol (
Page.printToPDF), no print dialog - Timestamped output folders — sessions never overwrite each other
- Recursive domain crawler — opens every page on the current domain by following links recursively, with URL normalization and deduplication (no duplicate pages opened). Useful for archiving an entire wiki or documentation site. Includes a Stop button to halt the crawl at any time.
This is an extension to clip websites and download them into a readable markdown file. Please keep in mind that it is not guaranteed to work on all websites.
To use this add-on, simply click the add-on icon while you are browsing the page you want to save offline. A popup will show the rendered markdown so you can make minor edits or copy the text, or you can click the download button to download an .md file.
Selecting text will allow you to download just the selected text
See the Markdownload User Guide for more details on the functionality of this extension
The extension is available for Firefox, Google Chrome, Microsoft Edge and Safari.
For integration with obsidian, you need to install and enable community plugins named "Advanced Obsidian URI". This plugin help us to bypass character limitation in URL. Because it's using clipboard as the source for creating new file. More information about Advanced Obsidian URI plugin: https://vinzent03.github.io/obsidian-advanced-uri/
You need to do some configurations in order to use this integration.
Steps to follow
- Left-Click on the extension
- Click on the gear icon to open the configuration menu
- Scroll down to "Obsidian integration" section and turn "enable obsidian integration" on.
- Fill out the form below (Obsidian vault name and Obsidian folder name.)
- Right-click on the extension and open the menu
- In "MarkDownload - Markdown Web Clipper", select "Send Tab to Obsidian"
It uses the following libraries:
- Readability.js by Mozilla version 0.5.0. This library is also used for the Firefox Reader View and it simplifies the page so that only the important parts are clipped. (Licensed under Apache License Version 2.0)
- Turndown by Dom Christie in version 7.1.3 is used to convert the simplified HTML (from Readability.js) into markdown. (Licensed under MIT License)
- Moment.js version 2.29.4 used to format dates in template variables
- Data on all sites: used to enable "Download All Tabs" functionality - no other data is captured or sent online
- Access tabs: used to access the website content when the icon in the browser bar is clicked.
- Manage Downloads: necessary to be able to download the markdown file.
- Storage: used to save extension options
- Clipboard: used to copy Markdown to clipboard
The Common Mark icon courtesy of https://github.com/dcurtis/markdown-mark
This is an open-source extension I made for fun. Its intention is to be completely free. It's free on Firefox, Edge and Chrome (and other Chromium browsers), but unfortunately for Safari there is a yearly developer fee, so I've decided to charge a small price for the Safari version to help cover that cost. Alternately, you can become a GitHub Sponsor for as little as $2 per month and you can request a key for the Safari version. Also, even if you're using the free version and you absolutely have to send me money because you like it that much, feel free to throw some coins in my hat via the following:
- Fixed extra spaces in titles which could cause issues (thanks @rickdoesdev !)
- Fixed an issue with image paths in some circumstances (thanks @rickdoesdev !)
- Added parametersizations for "mixed-kebab" and "mixed_snake" which retain original casing but replace spaces (thanks @NSHenry !)
- Also added a special "obsidian-cal" parameterization which is the same as "mixed-kebab" with duplicate
-removed for additional compatibility with the Obsidian Consistent Attachment Location plugin (thanks @NSHenry !)
- Also added a special "obsidian-cal" parameterization which is the same as "mixed-kebab" with duplicate
- Added lowecase and uppercase options to parameterizations (thanks @redxtech !)
- Updated Turndown to v7.1.3 (thanks @WeHat !)
- Updated Readability to v0.5.0 (thanks @WeHat !)
- Fixed some issues with code block parsing and formatting (thanks @WeHat !)
- Fixed an issue with some sites missing a proper title (thanks @WeHat !)
- Fixed an issue with bad base urls causing issues with links in certain circumstances (thanks @WeHat !)
- Fixed an issue with readability removing everything in certain circumstances (thanks @WeHat !)
- Send properly configured title to the Obsidian integration (thanks @nekton39 !)
- Updates to the README (thanks @2gn and @eugenesvk !)
Previous version history is recorded in CHANGELOG.md