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”。
扩展截图
下载NFT SCAM BLOCKER扩展crx文件
下载NFT SCAM BLOCKER扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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 |
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" ] } |