Real Domain Name

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

Real Domain Nameคืออะไร?

Real Domain Name เป็นส่วนขยายของ Chrome ที่พัฒนาโดย kidliaa และคุณลักษณะหลักของมันคือ "This extension shows a real domain name and real url of the current website."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Real Domain Name

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    ]
}