Dot Phishing Protector

This extension protects yourself against punycode domains phishing attacks.

Τι είναι το Dot Phishing Protector;

Το Dot Phishing Protector είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Roger Salgado, και η κύρια λειτουργία του είναι "This extension protects yourself against punycode domains phishing attacks.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Dot Phishing Protector

Λήψη αρχείων επέκτασης Dot Phishing Protector σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        This extension protects yourself against punycode domains phishing attacks that try to impersonate well known sites (including most banks online) by replacing some letters with the same character with a small dot bellow, that most people ignore/don't notice it.

In a real phishing attack (using this method), the little dot may be confused with a dead pixel or some dust on the screen.

As an example you may consider the following domain:

http://www.xn--goldmasachs-1x8e.com/

Despict the small do bellow the lowercase N character, it might be easily confused with:
http://www.goldmansachs.com/

This extension will provide a warning dialog every time the browser tries to open Urls domains that are punycode encoded, which may be used to trick the user.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Dot Phishing Protector Dot Phishing Protector
ID plhkgdgglhonnlckmigoohlmghiiepdo
Επίσημο URL https://chromewebstore.google.com/detail/dot-phishing-protector/plhkgdgglhonnlckmigoohlmghiiepdo
Περιγραφή This extension protects yourself against punycode domains phishing attacks.
Μέγεθος Αρχείου 8.17 KB
Αριθμός Εγκαταστάσεων 27
Τρέχουσα Έκδοση 1.0.1
Τελευταία Ενημέρωση 2018-01-19
Ημερομηνία Δημοσίευσης 2018-01-19
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής Roger Salgado
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Dot Phishing Protector",
    "description": "This extension protects yourself against punycode domains phishing attacks.",
    "author": "Roger Salgado ([email protected])",
    "version": "1.0.1",
    "manifest_version": 2,
    "browser_action": {
        "default_icon": "icon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentscript.js"
            ]
        }
    ],
    "permissions": [
        "tabs"
    ]
}