Siderite's DNS Resolver

Resolve DNS addresses based on previously working IPs

Siderite's DNS Resolver란 무엇입니까?

Siderite's DNS Resolver은(는) https://siderite.dev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Resolve DNS addresses based on previously working IPs"입니다.

확장 프로그램 스크린샷

screenshot

Siderite's DNS Resolver 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Chrome extension to remember previously resolved domain name IPs, in case DNS server goes down or IP is blocked.

It just runs in the background, remembering DNS resolutions (host to IP) until DNS fails. It then counts the number of DNS failures that it has an IP cached for.
Click on the DNS Resolver icon and you can copy/paste the necessary information to copy into the hosts file (which on Windows is in C:/Windows/System32/drivers/etc/hosts) to force the resolution to the known IP.
You can try to "auto replace", which replaces host with the IP, but this will fail in case there are multiple domains on the same IP (as many online platforms).

The extension does not communicate with the outside, but it does cache a list of hosts you visit.                    

확장 프로그램 기본 정보

이름 Siderite's DNS Resolver Siderite's DNS Resolver
ID fjjomhepnnicmnkfiopeimfpdbpegboa
공식 URL https://chromewebstore.google.com/detail/siderites-dns-resolver/fjjomhepnnicmnkfiopeimfpdbpegboa
설명 Resolve DNS addresses based on previously working IPs
파일 크기 58.61 KB
설치 횟수 1,651
현재 버전 0.0.3
최근 업데이트 2019-10-29
출시 날짜 2019-10-29
평점 4.20/5 총 5 개의 평점
개발자 https://siderite.dev
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://siderite.dev/blog/dns-resolver-chrome-extension-to-help.html/
개인정보 보호 정책 페이지 URL https://www.freeprivacypolicy.com/live/848ecff6-1db4-4f20-9cec-052b3c296aac
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Siderite's DNS Resolver",
    "description": "Resolve DNS addresses based on previously working IPs",
    "version": "0.0.3",
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "",
        "storage"
    ],
    "browser_action": {
        "default_icon": "icon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "web_accessible_resources": [
        "httpsErrorPage.html"
    ]
}