Sunrise: NFT Scam Protector

NFT scam protector for Web3.

Sunrise: NFT Scam Protector là gì?

Sunrise: NFT Scam Protector là một tiện ích mở rộng Chrome được phát triển bởi http://sunrise.wtf, và tính năng chính của nó là "NFT scam protector for Web3.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Sunrise: NFT Scam Protector

Tải xuống các tệp mở rộng Sunrise: NFT Scam Protector dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Sunrise is the multi-layer NFT scam protector with two primary walls of defense:
(1) When you visit a web3 site, we verify if the site is safe and block it if it’s a scam.
(2) If you proceed and connect your wallet on the site, we simulate transactions to help you avoid scams and wallet drainers!. 

✅ How does it work? 

1. The first layer of protection 

Most NFT scams lead people to SIMILAR YET FAKE websites. Sunrise recognizes trusted and verified sites and blocks the scam sites. We've verified more than 16,000+ NFT projects. Never connect your wallet to a fake mint site! 

We coalesce information from three major sources: 
(1) The OpenSea API
(2) CryptoScamDB (MetaMask) 
(3) Our own Sunrise database
to build a configuration file that maps Web3 sites to trust scores.

Once a new site is visited, the background script looks for an exact site match in the configuration and showcases the match if one is found. If a URL match is not found, we scan for likely signs of impersonation. 

2. The second layer of protection

If you connect your wallet and trigger a transaction, we simulate your transaction on a copy of the blockchain and warn you if you're signing an unsafe transaction.

After the safety checks, you can decide whether you want to continue the transaction on your wallet or if you want to cancel it. For this, we’ve partnered with Pocket Universe.

🔐 Are you worried about privacy? 

As with any browser extension, privacy can be a concern. This is why we use an offline configuration approach, benchmark our design against privacy-centric extensions such as uBlock Origin, and have fully open-sourced the extension.

We collect barebones, anonymous usage data that is carefully curated to balance building the best product possible and protecting your privacy.

Your browsing activity, the sites you do or do not visit, is always local and never sent without explicit, opt-in consent.

We are looking forward to building a safer Web3 with you all. Join the open-source project! 

Github: https://github.com/ollanoinc/sunrise-extension

🚀 More Info! 

Featured on NFT Evening: 
https://nftevening.com/sunrise-the-browser-extension-scanning-for-nft-scams/

Featured on Coinscreed: https://coinscreed.com/sunrise-nft-scam-detector.html

Read our story: 
https://medium.com/ollano-labs/fighting-nft-scams-and-why-its-personal-93c6b6ef9165

🔥 Let us know! 

If you want your Web3 sites covered by Sunrise, want to suggest features, or want to report scams, feel free to DM us on Twitter, join our Discord, or drop us an email! 

https://twitter.com/Sunrise_WTF
https://discord.com/invite/dDTAcSjTfJ
[email protected]

ℹ️ Disclaimer

'No Info' on our pop-up means, "We don't have enough information about the site". This also means, "Be extra careful with the site". 

Sunrise is not a silver bullet. We won't be responsible for scams so always exercise caution and DYOR (do your own research).                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Sunrise: NFT Scam Protector Sunrise: NFT Scam Protector
ID laciddhhmjgkkmlbcgflngnimonaidfc
URL Chính Thức https://chrome.google.com/webstore/detail/sunrise-nft-scam-protecto/laciddhhmjgkkmlbcgflngnimonaidfc
Mô tả NFT scam protector for Web3.
Kích Thước Tệp 1.77 MB
Số Lần Cài Đặt 369
Phiên Bản Hiện Tại 1.3.2
Cập Nhật Lần Cuối 2022-09-26
Ngày Phát Hành 2022-04-27
Đánh Giá 5.00/5 Tổng số 7 Đánh Giá
Nhà Phát Triển http://sunrise.wtf
Email [email protected]
Loại Thanh Toán free
URL Trang Trợ Giúp https://twitter.com/Sunrise_WTF
URL Trang Chính Sách Bảo Mật https://api.ssuper.co/privacy
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "NFT scam protector for Web3.",
    "version": "1.3.2",
    "manifest_version": 3,
    "name": "Sunrise: NFT Scam Protector",
    "permissions": [
        "tabs",
        "alarms",
        "storage",
        "scripting",
        "declarativeNetRequest"
    ],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "ruleset_1",
                "enabled": true,
                "path": "block.json"
            }
        ]
    },
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        ""
    ],
    "background": {
        "service_worker": "background.bundle.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": "icon-32.png"
    },
    "icons": {
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                ""
            ],
            "js": [
                "statusContentScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ]
        },
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                ""
            ],
            "js": [
                "simulatorContentScript.bundle.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "content.styles.css",
                "*.png",
                "*.svg",
                "*.jpg",
                "*.webp"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                ""
            ]
        }
    ]
}