Table to CSV

Table to CSV

Any html table you click on is downloaded in csv format.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Table to CSV",
  "description": "Any html table you click on is downloaded in csv format.",
  "version": "1.0.3",
  "icons": {
    "128": "table-icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}