Table to CSV

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)
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
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": [
    "menus",
    "activeTab"
  ],
  "optional_permissions": [
    "clipboardWrite"
  ],
  "version": "1.3.24",
  "browser_specific_settings": {
    "gecko": {
      "id": "{38dc25f6-5ed7-4279-a1fb-832b5e90a98b}"
    }
  }
}