DNSSEC Checker

Check DNSSEC for domain

DNSSEC Checker란 무엇입니까?

DNSSEC Checker은(는) Единый Интегратор Uzinfocom에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Check DNSSEC for domain"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

DNSSEC Checker 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 DNSSEC Checker DNSSEC Checker
ID amebjlfjmmeflkjhcealhbekaljgnekg
공식 URL https://chromewebstore.google.com/detail/dnssec-checker/amebjlfjmmeflkjhcealhbekaljgnekg
설명 Check DNSSEC for domain
파일 크기 63.45 KB
설치 횟수 585
현재 버전 1.0.8
최근 업데이트 2021-12-02
출시 날짜 2021-10-04
평점 5.00/5 총 2 개의 평점
개발자 Единый Интегратор Uzinfocom
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://dnssec.uz
도움말 페이지 URL https://dnssec.uz
개인정보 보호 정책 페이지 URL https://dnssec.cctld.uz/ru/page/privacy-policy
지원되는 언어 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"
    ]
}