{
  "manifest_version": 3,
  "name": "PoliRight Source Node",
  "version": "0.1.0",
  "description": "Hash public pages and submit wallet-linked source reports to PoliRight.",
  "permissions": ["activeTab", "storage", "scripting"],
  "host_permissions": ["https://poliright.org/*", "https://poliright.in/*", "http://localhost/*"],
  "action": {
    "default_title": "PoliRight Source Node",
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "service-worker.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": ["http://*/*", "https://*/*"],
      "js": ["content-script.js"],
      "run_at": "document_idle"
    }
  ]
}
