CSV Viewer

CSV Viewer

CSV Viewer allows you to read csv and open csv files. Our csv reader instantly transforms your data into an HTML table

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "description": "__MSG_shortDesc__",
  "version": "0.0.5",
  "default_locale": "en",
  "action": {
    "default_popup": "index.html"
  },
  "background": {
    "service_worker": "assets/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "assets/content.js"
      ],
      "css": [
        "assets/page.css"
      ]
    }
  ],
  "permissions": [
    "contextMenus",
    "activeTab"
  ],
  "icons": {
    "16": "assets/icon_16.png",
    "32": "assets/icon_32.png",
    "48": "assets/icon_48.png",
    "128": "assets/icon_128.png"
  }
}