A lightweight Chrome extension for fast, precise screenshots. Capture visible area, full page, or a custom-selected region in one click.
chrome://extensions.Click the extension icon to open the menu.
| Button | What it does |
|---|---|
| Capture Selected Area | Opens an overlay. Drag to draw a selection. Previous selection is pre-shown; drag the box to move it or drag outside to draw a new one. Press Enter or click the capture button to shoot. Press ESC to cancel. |
| Capture Visible Area | Captures the current viewport immediately. |
| Capture Full Page | Scrolls and stitches the full page into one PNG. |
The Rounded Corners slider applies a corner radius to all capture types and is saved between sessions.
Every capture is:
.png file automatically.QuickShot/
├── src/
│ ├── background/
│ │ └── background.js # Service worker: handles capture, download, clipboard
│ ├── content/
│ │ └── content.js # Injected script: area selection overlay, full-page stitching
│ ├── popup/
│ │ ├── popup.html # Extension popup UI
│ │ ├── popup.css # Popup styles
│ │ └── popup.js # Popup logic
│ └── icons/
│ ├── icon16.png
│ ├── icon48.png
│ └── icon128.png
└── manifest.json
MIT