GeoData Viewer

Load and visualize geospatial data
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "GeoData Viewer",
  "version": "1.1",
  "description": "Load and visualize geospatial data",
  "permissions": [
    "system.display"
  ],
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "GeoData Viewer"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "lib/duckdb-mvp.wasm",
        "lib/duckdb-eh.wasm",
        "lib/duckdb-browser-mvp.worker.js",
        "lib/duckdb-browser-eh.worker.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'; worker-src 'self'"
  }
}