PhishBlock
Helps to block phishing attempts through email.
Qu'est-ce que PhishBlock ?
PhishBlock est une extension Chrome développée par Casey Haralson, et sa fonction principale est "Helps to block phishing attempts through email.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension PhishBlock
Téléchargez les fichiers d'extension PhishBlock au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
Phishing attempts happen every day, all the time. We know we should be super wary of links and phone numbers in emails. We know we should check the sender address and make sure it's correct. This plugin helps with this idea. It looks at the sender's email address and compares it to any links in the email. If any information looks off or is unverifiable, it marks it in red. If everything looks good, it marks the email in green. Currently the plugin only works in Gmail. After installing, if you have Gmail open, close that tab and reopen it. This is an open source project. *Note: You should always see a green or red box around the email content. I wrote this plugin over Gmail (it integrates with their code) so when they update, it might make this plugin stop integrating. Please let me know and I will fix it as soon as possible.
Informations de Base sur l'Extension
Nom | PhishBlock |
ID | mfigocgdflddipodffjfpbjmplhhfbeh |
URL Officiel | https://chromewebstore.google.com/detail/phishblock/mfigocgdflddipodffjfpbjmplhhfbeh |
Description | Helps to block phishing attempts through email. |
Taille du Fichier | 45.73 KB |
Nombre d'Installations | 97 |
Version Actuelle | 0.0.0.4 |
Dernière Mise à Jour | 2017-03-01 |
Date de Publication | 2017-02-28 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | Casey Haralson |
Type de Paiement | free |
Site Web de l'Extension | http://www.caseyharalson.com/projects/phishblock.html |
Langues Prises en Charge | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "PhishBlock", "description": "Helps to block phishing attempts through email.", "version": "0.0.0.4", "manifest_version": 2, "permissions": [], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/mail.google.com\/*" ], "js": [ "jquery-1.11.3.min.js", "gmail.js" ], "css": [ "gmail.css" ] } ], "icons": { "48": "icon_48_01.png", "128": "icon_128_01.png" } } |