TrustCheck

TrustCheck

TrustCheck keeps you safe by intercepting your Web3 transactions and checking them for scams prior to sending to your wallet.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "TrustCheck keeps you safe by intercepting your Web3 transactions and checking them for scams prior to sending to your wallet.",
  "version": "1.5.1",
  "manifest_version": 3,
  "name": "TrustCheck",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAnfMKw4cu4d+shXYo6ckOmZLl0VsMGK7ncp3ibFsYPsQQpBSjjsbiFS/rFGNHG1um8f2/fKjhx+0Nq49KwghNmMgN5rnpY7egNkk/9PzPKsBgqCZjF67nRrPsgShx23v+7lMqAgugSWb7QQta+l+mX2M+kPgsnUumA1zkKk0MyQHkI+q0UDk/SZAKhpwpDgFrxq7/Ev/0N8Cgm83SKllYUI9fsTRfLqLAPzR2/nvRyrkDOBQh6doCnwbEz1bMyKqOT2ZX+BjxzGov4adx4I4J9wm5VRlTGkKbA+hEU83j14gLOevVQwKUgfmaPLyB0lhuKmm7CXiV5TRNlTjbkSwstQIDAQAB",
  "permissions": [
    "storage",
    "scripting",
    "webNavigation"
  ],
  "host_permissions": [
    "file://*/*",
    "http://*/*",
    "https://*/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "TrustCheck",
    "default_popup": "popup.html",
    "default_icon": "icon-128.png"
  },
  "icons": {
    "34": "icon-34.png",
    "128": "icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentScript.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "icon-128.png",
        "icon-34.png",
        "icon-pause.png"
      ],
      "matches": []
    }
  ]
}