PunyCode Domain Detection

This extension attempts to detect PunyCode domain phishing attack

Hvad er PunyCode Domain Detection?

PunyCode Domain Detection er en Chrome-udvidelse udviklet af Warpdesign, og dens hovedfunktion er "This extension attempts to detect PunyCode domain phishing attack".

Udvidelsesskærmbilleder

screenshot

Download PunyCode Domain Detection-udvidelses-CRX-fil

Download PunyCode Domain Detection-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        This extension attempts to detect phishing with unicode domains.

See https://www.xudongz.com/blog/2017/idn-phishing/ for more information.                    

Grundlæggende oplysninger om udvidelsen

Navn PunyCode Domain Detection PunyCode Domain Detection
ID fkenopinnpinfcjneoanjoimhkmdcjne
Officiel URL https://chromewebstore.google.com/detail/punycode-domain-detection/fkenopinnpinfcjneoanjoimhkmdcjne
Beskrivelse This extension attempts to detect PunyCode domain phishing attack
Filstørrelse 14.15 KB
Antal Installationer 1,411
Nuværende Version 0.0.2
Senest Opdateret 2017-04-18
Udgivelsesdato 2017-04-18
Bedømmelse 4.00/5 Samlet 5 Bedømmelser
Udvikler Warpdesign
Betalingsmetode free
Udvidelseswebsted https://github.com/warpdesign/puny-phishing-detection
Hjælpeside-URL https://github.com/warpdesign/puny-phishing-detection
Understøttede Sprog en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "PunyCode Domain Detection",
    "description": "This extension attempts to detect PunyCode domain phishing attack",
    "version": "0.0.2",
    "author": "Nicolas Ramz",
    "page_action": {
        "default_icon": "icon-128.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/punycode.js",
                "js\/content-main.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "activeTab",
        "https:\/\/ajax.googleapis.com\/"
    ]
}