Examine source code of Simple CSV Viewer

Inspect and view changes in Simple CSV Viewer source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "Simple CSV Viewer",
  "version": "1.0",
  "description": "View CSV files in a table format with sorting and searching capabilities.",
  "permissions": [
    "activeTab"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*/*/*.csv",
        "file:///*.csv"
      ],
      "js": [
        "dist/bundle.js"
      ],
      "css": [
        "styles.css"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{73e5098c-c39d-424b-bb79-2e2f27773a2c}"
    }
  }
}