Real Domain Name

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

Hvad er Real Domain Name?

Real Domain Name er en Chrome-udvidelse udviklet af kidliaa, og dens hovedfunktion er "This extension shows a real domain name and real url of the current website.".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot

Download Real Domain Name-udvidelses-CRX-fil

Download Real Domain Name-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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/                    

Grundlæggende oplysninger om udvidelsen

Navn Real Domain Name Real Domain Name
ID lhbkkikjboiebjeghokpefafaahnfoff
Officiel URL https://chromewebstore.google.com/detail/real-domain-name/lhbkkikjboiebjeghokpefafaahnfoff
Beskrivelse This extension shows a real domain name and real url of the current website.
Filstørrelse 33.72 KB
Antal Installationer 407
Nuværende Version 1.2
Senest Opdateret 2017-04-18
Udgivelsesdato 2017-04-18
Bedømmelse 5.00/5 Samlet 5 Bedømmelser
Udvikler kidliaa
Betalingsmetode free
Udvidelseswebsted https://twitter.com/kidliaa
Understøttede Sprog 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"
    ]
}