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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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