HTML-Table Scraper

HTML-Table Scraper

Copy HTML Table to CSV/TAB Clipboard or File

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "HTML-Table Scraper",
  "description": "Copy HTML Table to CSV/TAB Clipboard or File",
  "permissions": [
    "contextMenus",
    "activeTab",
    "storage",
    "scripting"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "version": "3.0.1",
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "icons/Scraper_32.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "all_frames": true,
      "match_about_blank": true
    }
  ],
  "icons": {
    "32": "icons/Scraper_32.png",
    "64": "icons/Scraper_64.png",
    "128": "icons/Scraper_128.png"
  }
}