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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    ]
}