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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://jessedegans.com และคุณลักษณะหลักของมันคือ "MintSafe detect's NFT minting Scams. It scans minting websites on malicious code and unusual practices."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย MintSafe - NFT Mint Scam Detection

ดาวน์โหลดไฟล์ส่วนขยาย MintSafe - NFT Mint Scam Detection ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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
        }
    ]
}