CSV Viewer by Table Capture

CSV Viewer by Table Capture

Views CSV files in a lovely table and allows you to copy it to the clipboard or download as an Excel file.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "version": "1.0.10",
  "name": "CSV Viewer by Table Capture",
  "short_name": "CSV Viewer",
  "description": "Views CSV files in a lovely table and allows you to copy it to the clipboard or download as an Excel file.",
  "homepage_url": "https://georgemike.com",
  "default_locale": "en",
  "icons": {
    "128": "images/icon.128.png"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "options_page": "options.html",
  "web_accessible_resources": [
    {
      "resources": [
        "images/icon.128.png",
        "images/icon.tablecapture.png",
        "images/icon.png"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "file://*/*",
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/lib/Blob.js",
        "js/lib/FileSaver.v2.0.2.min.js",
        "js/lib/xlsx.full.1.13.0.min.js",
        "js/lib/papaparse.min.js",
        "js/Clipboard.js",
        "js/Config.js",
        "js/CSVV.js",
        "js/ExcelUtil.js",
        "js/MessageAction.js",
        "js/Utils.js",
        "js/content.js"
      ],
      "css": [
        "css/content.css"
      ],
      "all_frames": false
    }
  ],
  "permissions": [
    "contextMenus",
    "downloads"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}