Table Exporter

Table Exporter

Exports a table from the DOM as a CSV file.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Table Exporter",
  "version": "1.0.1",
  "version_name": "1.0.1",
  "manifest_version": 3,
  "description": "Exports a table from the DOM as a CSV file.",
  "icons": {
    "16": "icons/table_black16x16.png",
    "32": "icons/table_black32x32.png",
    "64": "icons/table_black64x64.png",
    "128": "icons/table_black128x128.png",
    "512": "icons/table_black512x512.png"
  },
  "permissions": [
    "downloads",
    "tabs",
    "contextMenus"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "file://*/*"
      ],
      "js": [
        "tables.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}