Real Domain Name

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

Wat is Real Domain Name?

Real Domain Name is een Chrome-extensie ontwikkeld door kidliaa, en de belangrijkste functie is "This extension shows a real domain name and real url of the current website.".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Real Domain Name

Download Real Domain Name-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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/                    

Basisinformatie over de Extensie

Naam Real Domain Name Real Domain Name
ID lhbkkikjboiebjeghokpefafaahnfoff
Officiële URL https://chromewebstore.google.com/detail/real-domain-name/lhbkkikjboiebjeghokpefafaahnfoff
Beschrijving This extension shows a real domain name and real url of the current website.
Bestandsgrootte 33.72 KB
Aantal Installaties 407
Huidige Versie 1.2
Laatst Bijgewerkt 2017-04-18
Publicatiedatum 2017-04-18
Beoordeling 5.00/5 Totaal 5 Beoordelingen
Ontwikkelaar kidliaa
Betalingswijze free
Extensiewebsite https://twitter.com/kidliaa
Ondersteunde Talen 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"
    ]
}