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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Tired of NFT Scams? This extension will notify you if you are attempting to connect your wallet to a malicious website"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में NFT SCAM BLOCKER एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" ] } |