NFT Guard
Protect yourself from fraudulent NFT collections.
NFT Guard란 무엇입니까?
NFT Guard은(는) https://www.fakespot.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Protect yourself from fraudulent NFT collections."입니다.
확장 프로그램 스크린샷
NFT Guard 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
NFT Guard protects you from fraudulent NFT collections on OpenSea and scam NFT mint sites that are trying to steal your wallet and coins. Coming from the developer of Fakespot, the ultimate consumer protector company. The rise in fraud on NFT marketplaces is skyrocketing and unverified collections are running wild. Use the NFT Guard extension to quickly learn if a collection is verified to protect yourself from fake NFT collections and from minting on a fraudulent mint site! Features: • Real-time NFT Collection Verification badges • Invaluable data provided linking collections to their official social and website metadata • Incredibly fast and responsive • Mint site verification, do not get duped by false and fraudulent mint sites anymore! Please contact us if you'd like to see any features or have feedback about the extension!
확장 프로그램 기본 정보
이름 | |
ID | goamkcjegfclpaamejhombiegmjaghdl |
공식 URL | https://chrome.google.com/webstore/detail/nft-guard/goamkcjegfclpaamejhombiegmjaghdl |
설명 | Protect yourself from fraudulent NFT collections. |
파일 크기 | 526 KB |
설치 횟수 | 286 |
현재 버전 | 1.7 |
최근 업데이트 | 2022-06-01 |
출시 날짜 | 2022-01-27 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | https://www.fakespot.com |
이메일 | [email protected] |
결제 유형 | free |
도움말 페이지 URL | https://www.fakespot.com/ |
개인정보 보호 정책 페이지 URL | https://www.fakespot.com/privacy-policy |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "minimum_chrome_version": "88", "name": "NFT Guard", "description": "Protect yourself from fraudulent NFT collections.", "short_name": "NFT Guard", "content_scripts": [ { "matches": [ "*:\/\/*.opensea.io\/*" ], "js": [ "content.js" ] } ], "action": { "default_icon": "icons\/src\/icons\/128A.png", "default_title": "NFT Guard", "default_popup": "popup.html" }, "icons": { "16": "icons\/src\/icons\/16A.png", "48": "icons\/src\/icons\/48A.png", "128": "icons\/src\/icons\/128A.png" }, "background": { "service_worker": "serviceWorker.js" }, "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "permissions": [ "unlimitedStorage", "storage", "tabs" ], "version": "1.7" } |