No Opener, No Phishers
Reduce the risk of falling victim to phishing attacks.
O que é No Opener, No Phishers?
No Opener, No Phishers é uma extensão do Chrome desenvolvida por Jamie Farrelly, e sua principal característica é "Reduce the risk of falling victim to phishing attacks.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão No Opener, No Phishers
Baixe arquivos de extensão No Opener, No Phishers no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | No Opener, No Phishers |
ID | hieejlcohhkjbpiihgphcnaaiehphike |
URL Oficial | https://chromewebstore.google.com/detail/no-opener-no-phishers/hieejlcohhkjbpiihgphcnaaiehphike |
Descrição | Reduce the risk of falling victim to phishing attacks. |
Tamanho do Arquivo | 274 KB |
Contagem de Instalações | 851 |
Versão Atual | 2 |
Última Atualização | 2019-06-17 |
Data de Publicação | 2019-06-17 |
Classificação | 4.78/5 Total de 9 Avaliações |
Desenvolvedor | Jamie Farrelly |
Tipo de Pagamento | free |
Idiomas Suportados | 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" } } |