Chrome extension for quickly capturing clicked page elements as PNG files.
The extension opens an inspect overlay, lets you click any element, crops the visible tab capture to that element, and downloads the result.
- Continuous click-to-capture mode
- Optional target output width (height keeps aspect ratio)
- High-DPI aware element cropping
- One-click local PNG download
- Open
chrome://extensions/ - Enable Developer mode
- Click Load unpacked
- Select this project folder
- Open any page you want to capture from
- Click the extension icon
- Optional: set Target Output Width (px)
- Enable Continuous Capture
- Click an element on the page to capture and download it
- Press
Esc(or toggle off) to exit capture mode
activeTab: temporary access to the current tab while you use the extensionscripting: injects the capture script only when neededdownloads: saves captured PNG files locally
- Only captures what is currently visible in the viewport
- Chrome-restricted pages (for example
chrome://pages) cannot be captured
No build step is required. Edit files directly and reload the extension from chrome://extensions/.
Core files:
manifest.json- extension manifest (MV3)popup.html/popup.css/popup.js- popup UI and controlscontent.js- inspect mode, element detection, capture and crop logicbackground.js- screenshot and download bridge
MIT - see LICENSE.