Real Domain Name

This extension shows a real domain name and real url of the current website.

Что такое Real Domain Name?

Real Domain Name - это расширение Chrome, разработанное kidliaa, и его основная функция - "This extension shows a real domain name and real url of the current website.".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения Real Domain Name

Скачайте файлы расширений Real Domain Name в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

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

                        Show real domain name of the current webpage. 

## Why it's important?

Copy this address to your url bar: https://www.xn--e1awd7f.com/ to see if you need this plugin.

## I don't trust this plugin?

This plugin is open sourced, check it here: https://github.com/liaa/real_domain_name

## More discussion here: 
https://www.wordfence.com/blog/2017/04/chrome-firefox-unicode-phishing/                    

Основная информация о расширении

Название Real Domain Name Real Domain Name
ID lhbkkikjboiebjeghokpefafaahnfoff
Официальный URL https://chromewebstore.google.com/detail/real-domain-name/lhbkkikjboiebjeghokpefafaahnfoff
Описание This extension shows a real domain name and real url of the current website.
Размер файла 33.72 KB
Количество установок 407
Текущая Версия 1.2
Последнее Обновление 2017-04-18
Дата публикации 2017-04-18
Рейтинг 5.00/5 Всего 5 оценок
Разработчик kidliaa
Тип оплаты free
Официальный сайт расширения https://twitter.com/kidliaa
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Real Domain Name",
    "description": "This extension shows a real domain name and real url of the current website.",
    "version": "1.2",
    "icons": {
        "128": "icon-128.png"
    },
    "browser_action": {
        "default_icon": "icon-128.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "activeTab",
        "tabs",
        "notifications"
    ]
}