A Chrome extension that exports any table on Ahrefs to CSV or copies it directly to your clipboard for instant paste into Google Sheets or Excel — no manual copying required.
- One-click export — detects the main table on screen automatically
- Click to select — hover over any table to highlight it, click to choose it
- Download CSV — saves a
.csvfile with a timestamped filename - Copy for Google Sheets / Excel — copies tab-separated data to clipboard, paste with
Ctrl+V - Live preview — the detected table is highlighted the moment you open the popup
- Clean numbers —
10,322→10322and172K→172000so Sheets treats them as real numbers, not text - Toggle column headers — include or exclude the header row right from the confirm dialog
- Works on Site Explorer, Keywords Explorer, and any other Ahrefs page with a table
This extension is not on the Chrome Web Store. Install it manually in a few steps.
Click Code → Download ZIP on this page, then unzip the folder.
You need Node.js installed.
cd ahrefs-table-exporter
npm install
npm run build- Open Chrome and go to
chrome://extensions - Enable Developer mode (toggle in the top-right corner)
- Click Load unpacked
- Select the unzipped project folder
The extension icon will appear in your Chrome toolbar.
- Navigate to any Ahrefs report (e.g. Site Explorer → Organic Keywords)
- Click the extension icon in the toolbar
- The detected table is highlighted on the page — the popup shows the row and column count
- Click Export Detected Table
- A confirmation appears at the bottom of the page showing the table info
- Choose Download CSV or Copy for Sheets
- Click the extension icon
- Click Select a Different Table…
- Hover over tables on the page — they highlight in blue as you move
- Click the table you want
- Confirm your choice and pick your export format
The confirmation dialog includes an Include column headers toggle. Turn it off if you are pasting into a spreadsheet that already has headers set up.
Press ESC to cancel table selection or dismiss the confirmation dialog.
If you modify the source files:
npm run buildThen go to chrome://extensions and click the refresh icon on the extension card.
| Ahrefs Tool | Works |
|---|---|
| Site Explorer — Organic Keywords | ✓ |
| Site Explorer — Backlinks | ✓ |
| Site Explorer — Top Pages | ✓ |
| Keywords Explorer | ✓ |
| Content Explorer | ✓ |
| Any page with a visible table | ✓ |
- TypeScript
- esbuild
- Chrome Extensions Manifest V3
- No frameworks, no external dependencies at runtime