NFT SCAM BLOCKER

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

NFT SCAM BLOCKER란 무엇입니까?

NFT SCAM BLOCKER은(는) https://mynftalerts.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Tired of NFT Scams? This extension will notify you if you are attempting to connect your wallet to a malicious website"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

NFT SCAM BLOCKER 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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!                    

확장 프로그램 기본 정보

이름 NFT SCAM BLOCKER NFT SCAM BLOCKER
ID kodenphecfmhhnomfnmpmapnbkhippkf
공식 URL https://chromewebstore.google.com/detail/nft-scam-blocker/kodenphecfmhhnomfnmpmapnbkhippkf
설명 Tired of NFT Scams? This extension will notify you if you are attempting to connect your wallet to a malicious website
파일 크기 62.35 KB
설치 횟수 17
현재 버전 1.0
최근 업데이트 2022-05-11
출시 날짜 2022-05-11
평점 5.00/5 총 1 개의 평점
개발자 https://mynftalerts.com
이메일 [email protected]
결제 유형 in_app
확장 프로그램 웹 사이트 https://www.mynftalerts.com/
개인정보 보호 정책 페이지 URL https://www.mynftalerts.com/privacy-policy
지원되는 언어 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"
    ]
}