CryptoGuard - by ChainGPT AI

CryptoGuard - by ChainGPT AI

Operate safely and securely in the crypto world with ChainGPT: An open-source, community-driven browser extension.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Operate safely and securely in the crypto world with ChainGPT: An open-source, community-driven browser extension.",
  "version": "1.3.4",
  "manifest_version": 3,
  "name": "CryptoGuard - by ChainGPT AI",
  "icons": {
    "16": "assets/favicon_16px.png",
    "32": "assets/favicon_32px.png",
    "48": "assets/favicon_48px.png",
    "128": "assets/favicon_256px.png"
  },
  "background": {
    "service_worker": "background.bundle.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "js": [
        "content.bundle.js",
        "windowEthereumMessages.bundle.js",
        "bypassCheck.bundle.js"
      ],
      "css": [],
      "all_frames": true,
      "run_at": "document_start"
    }
  ],
  "action": {
    "default_popup": "popup.html"
  },
  "permissions": [
    "storage",
    "tabs",
    "activeTab",
    "clipboardRead",
    "clipboardWrite",
    "webNavigation"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "attach.bundle.js",
        "proxyInjectedProviders.bundle.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}