PunyCode Domain Detection

This extension attempts to detect PunyCode domain phishing attack

ما هو PunyCode Domain Detection؟

PunyCode Domain Detection هو إضافة Chrome تم تطويرها بواسطة Warpdesign، والميزة الرئيسية لها هي "This extension attempts to detect PunyCode domain phishing attack".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة PunyCode Domain Detection

قم بتنزيل ملفات الامتداد PunyCode Domain Detection بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        This extension attempts to detect phishing with unicode domains.

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

معلومات أساسية عن التمديد

الاسم PunyCode Domain Detection PunyCode Domain Detection
ID fkenopinnpinfcjneoanjoimhkmdcjne
عنوان URL الرسمي https://chromewebstore.google.com/detail/punycode-domain-detection/fkenopinnpinfcjneoanjoimhkmdcjne
الوصف This extension attempts to detect PunyCode domain phishing attack
حجم الملف 14.15 KB
عدد التثبيتات 1,411
النسخة الحالية 0.0.2
آخر تحديث 2017-04-18
تاريخ النشر 2017-04-18
تقييم 4.00/5 مجموع تقييمات 5
المطور Warpdesign
نوع الدفع free
موقع الإضافة https://github.com/warpdesign/puny-phishing-detection
عنوان صفحة المساعدة https://github.com/warpdesign/puny-phishing-detection
اللغات المدعومة 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\/"
    ]
}