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 с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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
URL страницы помощи 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\/"
    ]
}