MintSafe - NFT Mint Scam Detection

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

MintSafe - NFT Mint Scam Detection란 무엇입니까?

MintSafe - NFT Mint Scam Detection은(는) https://jessedegans.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "MintSafe detect's NFT minting Scams. It scans minting websites on malicious code and unusual practices."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

MintSafe - NFT Mint Scam Detection 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        MintSafe prevents you from falling for fake minting pages/phishing.

MintSafe gives Mint page insight and more! MintSafe scans the website you're currently on to see if it can detect any abnormal/malicious code practices. It will give you an overview of potential issues and detect mint scam/phishing websites with a great success rate. 

MintSafe always provides involved addresses, what flags we raised, and links to Etherscan and Opensea to verify its authenticity. (Always quadruple check contract addresses found by MintSafe with the project's community!)

**MintSafe currently only supports Ethereum

See screenshots for further information on how to use or continue:

How to use:

1. Load the mint page of the NFT project you want to mint
2. Click to open the extension, a scan will start.
3. Tada! You will see a green screen if no issues have been found. It is still smart to verify the found addresses on the page with the NFT's community.  If your screen turns red, that means we have found issues.                    

확장 프로그램 기본 정보

이름 MintSafe - NFT Mint Scam Detection MintSafe - NFT Mint Scam Detection
ID fgnmfalhbacmelhicioejdkikheeokak
공식 URL https://chromewebstore.google.com/detail/mintsafe-nft-mint-scam-de/fgnmfalhbacmelhicioejdkikheeokak
설명 MintSafe detect's NFT minting Scams. It scans minting websites on malicious code and unusual practices.
파일 크기 529 KB
설치 횟수 37
현재 버전 0.0.2
최근 업데이트 2022-02-09
출시 날짜 2022-02-03
평점 5.00/5 총 1 개의 평점
개발자 https://jessedegans.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://jessedegans.com/MintSafe-privacy.html
개인정보 보호 정책 페이지 URL https://jessedegans.com/MintSafe-privacy.html
지원되는 언어 en
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": [
                ""
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "src\/browser\/content-script.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ]
}