Real Domain Name

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

Qu'est-ce que Real Domain Name ?

Real Domain Name est une extension Chrome développée par kidliaa, et sa fonction principale est "This extension shows a real domain name and real url of the current website.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Real Domain Name

Téléchargez les fichiers d'extension Real Domain Name au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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/                    

Informations de Base sur l'Extension

Nom Real Domain Name Real Domain Name
ID lhbkkikjboiebjeghokpefafaahnfoff
URL Officiel https://chromewebstore.google.com/detail/real-domain-name/lhbkkikjboiebjeghokpefafaahnfoff
Description This extension shows a real domain name and real url of the current website.
Taille du Fichier 33.72 KB
Nombre d'Installations 407
Version Actuelle 1.2
Dernière Mise à Jour 2017-04-18
Date de Publication 2017-04-18
Évaluation 5.00/5 Total 5 Évaluations
Développeur kidliaa
Type de Paiement free
Site Web de l'Extension https://twitter.com/kidliaa
Langues Prises en Charge 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"
    ]
}