Real Domain Name

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

Was ist Real Domain Name?

Real Domain Name ist eine Chrome-Erweiterung, die von kidliaa entwickelt wurde, und ihr Hauptmerkmal ist "This extension shows a real domain name and real url of the current website.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Real Domain Name-Erweiterungs-CRX-Datei herunterladen

Laden Sie Real Domain Name-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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/                    

Grundlegende Informationen zur Erweiterung

Name Real Domain Name Real Domain Name
ID lhbkkikjboiebjeghokpefafaahnfoff
Offizielle URL https://chromewebstore.google.com/detail/real-domain-name/lhbkkikjboiebjeghokpefafaahnfoff
Beschreibung This extension shows a real domain name and real url of the current website.
Dateigröße 33.72 KB
Installationsanzahl 407
Aktuelle Version 1.2
Letztes Update 2017-04-18
Veröffentlichungsdatum 2017-04-18
Bewertung 5.00/5 Insgesamt 5 Bewertungen
Entwickler kidliaa
Zahlungsart free
Erweiterungswebsite https://twitter.com/kidliaa
Unterstützte Sprachen 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"
    ]
}