Email Phishing Tool
Check if an email is phishing with one click!
Email Phishing Tool क्या है?
Email Phishing Tool SFBN Dev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Check if an email is phishing with one click!"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Email Phishing Tool एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Simply highlight any text and click the extension icon, and you will be presented with a phishing analysis. Features include: - Phishy keyword detector - Spell check - Unsafe links - Overall rating Enjoy :)
एक्सटेंशन की मूल जानकारी
नाम | Email Phishing Tool |
ID | libamiifmgfpcafbdjhaojbbbdgcbhif |
आधिकारिक URL | https://chromewebstore.google.com/detail/email-phishing-tool/libamiifmgfpcafbdjhaojbbbdgcbhif |
विवरण | Check if an email is phishing with one click! |
फ़ाइल का आकार | 114 KB |
स्थापना संख्या | 149 |
वर्तमान संस्करण | 1.0.1 |
अंतिम अपडेट | 2021-01-21 |
प्रकाशन तिथि | 2020-05-04 |
रेटिंग | 3.00/5 कुल 2 रेटिंग्स |
डेवलपर | SFBN Dev |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Email Phishing Tool", "version": "1.0.1", "manifest_version": 2, "description": "Check if an email is phishing with one click!", "icons": { "16": "emailphishingicon16.png", "48": "emailphishingicon48.png", "128": "emailphishingicon128.png" }, "permissions": [ "storage" ], "background": { "scripts": [ "background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content.js" ] } ], "browser_action": { "default_title": "Email Phishing Tool", "default_popup": "popup.html" } } |