DNS INFO

Used to find the DNS and Whois info of the current page

Что такое DNS INFO?

DNS INFO - это расширение Chrome, разработанное https://dnsinfo.xyz, и его основная функция - "Used to find the DNS and Whois info of the current page".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения DNS INFO

Скачайте файлы расширений DNS INFO в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                                            

Основная информация о расширении

Название DNS INFO DNS INFO
ID egcjmpdddjcbhaiaglcjppoageenfgnc
Официальный URL https://chromewebstore.google.com/detail/dns-info/egcjmpdddjcbhaiaglcjppoageenfgnc
Описание Used to find the DNS and Whois info of the current page
Размер файла 39.92 KB
Количество установок 47
Текущая Версия 1.1
Последнее Обновление 2018-04-19
Дата публикации 2018-04-18
Рейтинг 5.00/5 Всего 2 оценок
Разработчик https://dnsinfo.xyz
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "DNS INFO",
    "description": "Used to find the DNS and Whois info of the current page",
    "version": "1.1",
    "content_security_policy": "script-src 'self' https:\/\/unpkg.com https:\/\/maxcdn.bootstrapcdn.com; object-src 'self'",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "",
        "activeTab",
        "storage",
        "tabs"
    ]
}