HTML Tables to XLSX Spreadsheets

HTML Tables to XLSX Spreadsheets

Convert all HTML tables in a web page to a XLSX spreadsheet, with each table placed on a seperate tab.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "HTML Tables to XLSX Spreadsheets",
  "description": "Convert all HTML tables in a web page to a XLSX spreadsheet, with each table placed on a seperate tab.",
  "version": "1.0.5",
  "options_page": "options.html",
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "host_permissions": [
    "*://grabz.it/*"
  ],
  "permissions": [
    "activeTab",
    "storage",
    "scripting",
    "downloads"
  ],
  "icons": {
    "48": "icon48.png",
    "64": "icon64.png",
    "96": "icon.png",
    "128": "icon128.png"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}