Examine source code of Legal Document Analyzer

Inspect and view changes in Legal Document Analyzer 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
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Legal Document Analyzer",
  "version": "1.0",
  "description": "Analyze and summarize legal documents using AI",
  "permissions": [
    "storage"
  ],
  "action": {
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "pdf.min.js",
        "pdf.worker.min.js",
        "worker-config.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}