Website Table Exporter – Get this Extension for 🦊 Firefox (en-US)

1 min read Original article ↗

Website Table Exporter

Export table data from websites to CSV, JSON and Markdown directly to clipboard.

  • FULL CLIENTE-SIDE. NO ADS. NO TRACKING.
  • Open Source: Full source code available on GitHub

Browser Support

Compatible with Firefox and Chrome.

Export Format Examples

CSV Format: Perfect for spreadsheets and data analysis:

"Name","Age","City"
"John Doe",30,"New York"
"Jane Smith",25,"Los Angeles"

JSON Format: Ideal for developers and data processing:

[
 {
  "Name": "John Doe",
  "Age": 30,
  "City": "New York"
 },
 {
  "Name": "Jane Smith",
  "Age": 25,
  "City": "Los Angeles"
 }
]

Markdown Format: Great for documentation and README files:

| Name | Age | City |
| --- | --- | --- |
| John Doe | 30 | New York |
| Jane Smith | 25 | Los Angeles |