HTMLtoCSV

HTMLtoCSV

Exports HTML tables to CSV spreadsheets.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "version": "1.0",
  "manifest_version": 3,
  "default_locale": "en",
  "icons": {
    "16": "./img/16.png",
    "19": "./img/19.png",
    "32": "./img/32.png",
    "38": "./img/38.png",
    "48": "./img/48.png",
    "128": "./img/128.png"
  },
  "background": {
    "service_worker": "./background.js"
  },
  "action": {
    "default_icon": {
      "16": "./img/16.png",
      "19": "./img/19.png",
      "38": "./img/38.png",
      "48": "./img/48.png",
      "128": "./img/128.png"
    }
  },
  "permissions": [
    "activeTab",
    "scripting"
  ],
  "host_permissions": [
    "*://*/*"
  ]
}