DNSSEC Checker

Check DNSSEC for domain

DNSSEC Checker là gì?

DNSSEC Checker là một tiện ích mở rộng Chrome được phát triển bởi Единый Интегратор Uzinfocom, và tính năng chính của nó là "Check DNSSEC for domain".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng DNSSEC Checker

Tải xuống các tệp mở rộng DNSSEC Checker dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        The extension allows you to check if DNSSEC technology is being used for the current domain name. If DNSSEC technology is used - the extension icon changes to green, if not used - to gray.

DNSSEC (Domain Name System Security Extensions) is a set of extensions to the IETF DNS protocol that minimize attacks associated with spoofing DNS addresses when resolving domain names. It is aimed at providing DNS clients (the English term resolver) with authentic responses to DNS requests (or authentic information about the fact that there is no data) and ensuring their integrity. This uses public key cryptography. Availability of data and confidentiality of requests are not ensured. Keeping DNS secure is critical to overall Internet security.

This extension helps to determine if users on the network have DNSSEC and if the resource is secure. The extension in the background sends the current domain to the dnssec.cctld.uz service, which returns the result. If DNSSEC technology is used - the extension icon changes to green, if not used - to gray.

Note: The results of the extension depend on the availability of the dnssec.cctld.uz service.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên DNSSEC Checker DNSSEC Checker
ID amebjlfjmmeflkjhcealhbekaljgnekg
URL Chính Thức https://chromewebstore.google.com/detail/dnssec-checker/amebjlfjmmeflkjhcealhbekaljgnekg
Mô tả Check DNSSEC for domain
Kích Thước Tệp 63.45 KB
Số Lần Cài Đặt 585
Phiên Bản Hiện Tại 1.0.8
Cập Nhật Lần Cuối 2021-12-02
Ngày Phát Hành 2021-10-04
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Единый Интегратор Uzinfocom
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://dnssec.uz
URL Trang Trợ Giúp https://dnssec.uz
URL Trang Chính Sách Bảo Mật https://dnssec.cctld.uz/ru/page/privacy-policy
Ngôn Ngữ Được Hỗ Trợ en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "DNSSEC Checker",
    "description": "__MSG_description__",
    "version": "1.0.8",
    "icons": {
        "64": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery.min.js",
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "default_locale": "en",
    "browser_action": {
        "default_icon": "logo-off.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs"
    ]
}