No Opener, No Phishers
Reduce the risk of falling victim to phishing attacks.
Τι είναι το No Opener, No Phishers;
Το No Opener, No Phishers είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Jamie Farrelly, και η κύρια λειτουργία του είναι "Reduce the risk of falling victim to phishing attacks.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης No Opener, No Phishers
Λήψη αρχείων επέκτασης No Opener, No Phishers σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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" } } |