Real Domain Name

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

Apa itu Real Domain Name?

Real Domain Name adalah ekstensi Chrome yang dikembangkan oleh kidliaa, dan fitur utamanya adalah "This extension shows a real domain name and real url of the current website.".

Screenshot Ekstensi

screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Real Domain Name

Unduh file ekstensi Real Domain Name dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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/                    

Informasi Dasar Ekstensi

Nama Real Domain Name Real Domain Name
ID lhbkkikjboiebjeghokpefafaahnfoff
URL Resmi https://chromewebstore.google.com/detail/real-domain-name/lhbkkikjboiebjeghokpefafaahnfoff
Deskripsi This extension shows a real domain name and real url of the current website.
Ukuran File 33.72 KB
Jumlah Instalasi 407
Versi Saat Ini 1.2
Terakhir Diperbarui 2017-04-18
Tanggal Publikasi 2017-04-18
Penilaian 5.00/5 Total 5 Penilaian
Pengembang kidliaa
Tipe Pembayaran free
Situs Ekstensi https://twitter.com/kidliaa
Bahasa yang Didukung 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"
    ]
}