MintSafe - NFT Mint Scam Detection

MintSafe - NFT Mint Scam Detection

MintSafe detect's NFT minting Scams. It scans minting websites on malicious code and unusual practices.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "MintSafe - NFT Mint Scam Detection",
  "version": "0.0.2",
  "manifest_version": 3,
  "description": "MintSafe detect's NFT minting Scams. It scans minting websites on malicious code and unusual practices.",
  "homepage_url": "https://jessedegans.com",
  "icons": {
    "16": "src/icons/icon16.png",
    "32": "src/icons/icon32.png",
    "48": "src/icons/icon48.png",
    "128": "src/icons/icon128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": "src/icons/icon48.png",
    "default_title": "MintSafe - Overview",
    "default_popup": "src/dashboard/dashboard.html"
  },
  "permissions": [
    "declarativeContent"
  ],
  "host_permissions": [
    "https://*/*",
    "http://*/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "src/browser/inject.js",
        "vendor/js/web3.min.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "src/browser/content-script.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ]
}