Real Domain Name

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

¿Qué es Real Domain Name?

Real Domain Name es una extensión de Chrome desarrollada por kidliaa, y su función principal es "This extension shows a real domain name and real url of the current website.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Real Domain Name

Descarga archivos de extensión Real Domain Name en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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/                    

Información Básica de la Extensión

Nombre Real Domain Name Real Domain Name
ID lhbkkikjboiebjeghokpefafaahnfoff
URL Oficial https://chromewebstore.google.com/detail/real-domain-name/lhbkkikjboiebjeghokpefafaahnfoff
Descripción This extension shows a real domain name and real url of the current website.
Tamaño del Archivo 33.72 KB
Cantidad de Instalaciones 407
Versión Actual 1.2
Última Actualización 2017-04-18
Fecha de Publicación 2017-04-18
Calificación 5.00/5 Total de 5 Calificaciones
Desarrollador kidliaa
Tipo de Pago free
Sitio Web de la Extensión https://twitter.com/kidliaa
Idiomas Soportados 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"
    ]
}