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
官方網址 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"
    ]
}