Real Domain Name

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

Cos'è Real Domain Name?

Real Domain Name è un'estensione di Chrome sviluppata da kidliaa, e la sua funzione principale è "This extension shows a real domain name and real url of the current website.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Real Domain Name

Scarica i file di estensione Real Domain Name in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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/                    

Informazioni di Base sull'Estensione

Nome Real Domain Name Real Domain Name
ID lhbkkikjboiebjeghokpefafaahnfoff
URL Ufficiale https://chromewebstore.google.com/detail/real-domain-name/lhbkkikjboiebjeghokpefafaahnfoff
Descrizione This extension shows a real domain name and real url of the current website.
Dimensione del File 33.72 KB
Conteggio Installazioni 407
Versione Corrente 1.2
Ultimo Aggiornamento 2017-04-18
Data di Pubblicazione 2017-04-18
Valutazione 5.00/5 Totale 5 Valutazioni
Sviluppatore kidliaa
Tipo di Pagamento free
Sito Web dell'Estensione https://twitter.com/kidliaa
Lingue Supportate 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"
    ]
}