Real Domain Name

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

Co je Real Domain Name?

Real Domain Name je rozšíření Chrome vyvinuté kidliaa, a jeho hlavní funkcí je „This extension shows a real domain name and real url of the current website.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Real Domain Name

Stáhněte si soubory rozšíření Real Domain Name ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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/                    

Základní Informace o Rozšíření

Název Real Domain Name Real Domain Name
ID lhbkkikjboiebjeghokpefafaahnfoff
Oficiální URL https://chromewebstore.google.com/detail/real-domain-name/lhbkkikjboiebjeghokpefafaahnfoff
Popis This extension shows a real domain name and real url of the current website.
Velikost souboru 33.72 KB
Počet instalací 407
Aktuální Verze 1.2
Poslední Aktualizace 2017-04-18
Datum Vydání 2017-04-18
Hodnocení 5.00/5 Celkem 5 Hodnocení
Vývojář kidliaa
Typ Platby free
Webové stránky Rozšíření https://twitter.com/kidliaa
Podporované Jazyky 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"
    ]
}