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文件

下載Siderite's DNS Resolver擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    ]
}