Spreadsheet-Ready Tables

Spreadsheet-Ready Tables

Prepare tables for spreadsheet applications by converting HTML tables, CSS pseudo/DIV tables, and lists (UL/OL) into CSV files, facilitating efficient data transfer and processing within spreadsheet software.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "author": "igorlogius",
  "homepage_url": "https://github.com/igorlogius/tbl2csv",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_area": "navbar",
    "default_icon": "icon.png"
  },
  "icons": {
    "128": "icon.png"
  },
  "default_area": "navbar",
  "manifest_version": 2,
  "name": "Table to CSV",
  "description": "Save HTML Tables, CSS Pseudo/DIV Tables or Lists (UL/OL) as a comma seperated values (CSV) file which can be opened with any spreadsheet processor (e.g. excel, libreoffice-calc,gnumeric) for further processing and conversion (e.g. to xls or ods)",
  "permissions": [
    "clipboardWrite",
    "menus",
    "activeTab",
    "notifications"
  ],
  "version": "1.3.19",
  "browser_specific_settings": {
    "gecko": {
      "id": "{86169599-aad7-4f40-9045-6d38cfe2e92d}"
    }
  }
}