No Opener, No Phishers
Reduce the risk of falling victim to phishing attacks.
No Opener, No Phishers क्या है?
No Opener, No Phishers Jamie Farrelly द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Reduce the risk of falling victim to phishing attacks."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में No Opener, No Phishers एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Any website that uses target="_blank" on their links, allows user generated content and doesn't use the rel="noopener" attribute on their links (I'm looking at you Facebook, Twitter etc.) is vulnerable to a scarily simple phishing attack. For an example of this kind of attack, view this example that I've made: https://jamiefarrelly.github.io/Rel-NoOpener-Example/ This Chrome extension is as simple as it gets, all it does is add "noopener noreferrer" to the rel attribute on all links on the pages that you're visiting so that you won't fall victim to this type of phishing attack. Open source on Github https://github.com/JamieFarrelly/No-Opener-No-Phishers
एक्सटेंशन की मूल जानकारी
नाम | No Opener, No Phishers |
ID | hieejlcohhkjbpiihgphcnaaiehphike |
आधिकारिक URL | https://chromewebstore.google.com/detail/no-opener-no-phishers/hieejlcohhkjbpiihgphcnaaiehphike |
विवरण | Reduce the risk of falling victim to phishing attacks. |
फ़ाइल का आकार | 274 KB |
स्थापना संख्या | 851 |
वर्तमान संस्करण | 2 |
अंतिम अपडेट | 2019-06-17 |
प्रकाशन तिथि | 2019-06-17 |
रेटिंग | 4.78/5 कुल 9 रेटिंग्स |
डेवलपर | Jamie Farrelly |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "No Opener, No Phishers", "version": "2", "description": "Reduce the risk of falling victim to phishing attacks.", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/background.js" ], "run_at": "document_end", "all_frames": false } ], "icons": { "16": "images\/icon-16x16.png", "19": "images\/icon-19x19.png", "48": "images\/icon-48x48.png", "128": "images\/icon-128x128.png", "130": "images\/icon-130x130.png", "550": "images\/icon-550x550.png" }, "browser_action": { "default_icon": "images\/icon-16x16.png" } } |