Quickly grab content from any page:
Ctrl+Shift+M(or click the extension) → pick an element → its HTML is converted to Markdown and copied.Ctrl+Shift+S→ pick an element → a PNG screenshot of that element is copied. On macOS these useControl(not Command).
- Grab the .zip from
dist/, and unzip it- Or, clone this repo
- Then in Chrome, open
chrome://extensions, enable Developer Mode, click Load unpacked, and select the unzipped/cloned folder.
- Triggers Chrome’s inspect overlay so you can click the element you want.
- For Markdown: grabs the element’s outer HTML, runs Turndown locally, and writes the Markdown to your clipboard.
- For screenshots: captures a clipped PNG of the element and writes it to your clipboard.
- The debugger detaches automatically after selection.
debuggerto use CDP for inspect and screenshots.offscreenfor the Turndown conversion worker.clipboardWrite/clipboardReadto update the clipboard.activeTab,tabs,scriptingto target the current page and run clipboard writes in-page.- Turndown is bundled locally (
turndown.js).
turndown.js is from Turndown and is Copyright (c) 2017 Dom Christie under the MIT license.