Download table as CSV

Download table as CSV

Download HTML tables in MS Excel style CSV format.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Download table as CSV",
  "description": "Download HTML tables in MS Excel style CSV format.",
  "version": "1.6",
  "manifest_version": 2,
  "permissions": [
    "contextMenus",
    "activeTab",
    "storage"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_popup": "popup.html"
  },
  "icons": {
    "32": "icons/32x32.png",
    "64": "icons/64x64.png",
    "128": "icons/128x128.png"
  }
}