Real Domain Name

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

Real Domain Nameとは何ですか?

Real Domain Nameはkidliaaによって開発されたChromeの拡張機能で、その主な機能は「This extension shows a real domain name and real url of the current website.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

Real Domain Name拡張機能のCRXファイルをダウンロード

Real Domain Name拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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/                    

拡張機能の基本情報

名前 Real Domain Name Real Domain Name
ID lhbkkikjboiebjeghokpefafaahnfoff
公式URL https://chromewebstore.google.com/detail/real-domain-name/lhbkkikjboiebjeghokpefafaahnfoff
説明 This extension shows a real domain name and real url of the current website.
ファイルサイズ 33.72 KB
インストール数 407
現在のバージョン 1.2
最終更新日 2017-04-18
公開日 2017-04-18
評価 5.00/5 合計 5 レビュー
開発者 kidliaa
支払い方法 free
拡張機能のウェブサイト https://twitter.com/kidliaa
対応言語 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"
    ]
}