NFT SCAM BLOCKER

Tired of NFT Scams? This extension will notify you if you are attempting to connect your wallet to a malicious website

O que é NFT SCAM BLOCKER?

NFT SCAM BLOCKER é uma extensão do Chrome desenvolvida por https://mynftalerts.com, e sua principal característica é "Tired of NFT Scams? This extension will notify you if you are attempting to connect your wallet to a malicious website".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão NFT SCAM BLOCKER

Baixe arquivos de extensão NFT SCAM BLOCKER no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        Protect yourself from fraudulent NFT websites that might want to take your precious jpegs and coins.

NFT SCAM BLOCKER prevents you from falling for fake minting pages/phishing. 

How it works?

1) Install the extension

2) If a website calls on the users Metamask, Coinbase or Phantom wallet to connect and that website is not the official website of a project then this extension will show a pop up message warning the user before completing a transaction.

Please contact us if you'd like to see any features or have feedback about the extension!                    

Informações Básicas da Extensão

Nome NFT SCAM BLOCKER NFT SCAM BLOCKER
ID kodenphecfmhhnomfnmpmapnbkhippkf
URL Oficial https://chromewebstore.google.com/detail/nft-scam-blocker/kodenphecfmhhnomfnmpmapnbkhippkf
Descrição Tired of NFT Scams? This extension will notify you if you are attempting to connect your wallet to a malicious website
Tamanho do Arquivo 62.35 KB
Contagem de Instalações 17
Versão Atual 1.0
Última Atualização 2022-05-11
Data de Publicação 2022-05-11
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor https://mynftalerts.com
Email [email protected]
Tipo de Pagamento in_app
Site da Extensão https://www.mynftalerts.com/
URL da Página de Política de Privacidade https://www.mynftalerts.com/privacy-policy
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "NFT SCAM BLOCKER",
    "description": "Tired of NFT Scams? This extension will notify you if you are attempting to connect your wallet to a malicious website",
    "version": "1.0",
    "manifest_version": 3,
    "homepage_url": "https:\/\/www.mynftalerts.com\/",
    "author": {
        "name": "Mohsin Ali",
        "url": "https:\/\/fiverr.com\/mohsinaliryk"
    },
    "background": {
        "service_worker": "sw.js"
    },
    "action": {
        "default_icon": "img\/128.png"
    },
    "icons": {
        "24": "img\/24.png",
        "32": "img\/32.png",
        "48": "img\/48.png",
        "64": "img\/64.png",
        "128": "img\/128.png",
        "256": "img\/256.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "js\/global.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/extensionpay.com\/*"
            ],
            "js": [
                "js\/service.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/extensionpay.com\/extension\/nft-scam-blocker-yearly*"
            ],
            "css": [
                "css\/mods.css"
            ],
            "js": [
                "js\/mods.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "resources": [
                "popup.html"
            ]
        },
        {
            "matches": [
                "https:\/\/extensionpay.com\/*"
            ],
            "resources": [
                "img\/128.png"
            ]
        }
    ],
    "permissions": [
        "storage",
        "alarms"
    ]
}