Web3 Antivirus

Web3 Antivirus

The security tool protects you from web3 scams by auditing transactions and detecting phishing websites.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Web3 Antivirus",
  "description": "The security tool protects you from web3 scams by auditing transactions and detecting phishing websites.",
  "version": "0.14.3",
  "manifest_version": 2,
  "default_locale": "en",
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "48.0"
    }
  },
  "browser_action": {
    "default_icon": {
      "16": "icon16.png",
      "32": "icon32.png",
      "48": "icon48.png",
      "128": "icon128.png"
    },
    "default_popup": "index.html",
    "default_title": "Web3 Antivirus"
  },
  "permissions": [
    "storage",
    "unlimitedStorage",
    "tabs",
    "cookies",
    "scripting",
    "alarms",
    "activeTab",
    "<all_urls>"
  ],
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "browser-polyfill.js",
        "/static/js/inject.js"
      ],
      "css": [
        "/static/css/global.css"
      ],
      "run_at": "document_idle",
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    "browser-polyfill.js",
    "static/media/*",
    "injectedScript.js",
    "tracing.html",
    "static/css/inject.css",
    "static/js/inject.js",
    "https://checknft.io/*",
    "https://api.web3antivirus.io/*"
  ],
  "background": {
    "scripts": [
      "browser-polyfill.js",
      "background.js"
    ]
  },
  "homepage_url": "https://web3antivirus.io/"
}