Radar by Meshed Labs

Radar by Meshed Labs

Web3 extension to intercept bad transactions before you get scammed.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Radar by Meshed Labs",
  "author": "meshed.xyz",
  "version": "1.1.1",
  "description": "Web3 extension to intercept bad transactions before you get scammed.",
  "permissions": [
    "tabs"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "action": {
    "default_popup": "dropdown.html",
    "default_icon": "icons/radar-128.png"
  },
  "icons": {
    "128": "icons/radar-128.png"
  },
  "externally_connectable": {
    "ids": []
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content_script.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "attach.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}