Siderite's DNS Resolver

Resolve DNS addresses based on previously working IPs

O que é Siderite's DNS Resolver?

Siderite's DNS Resolver é uma extensão do Chrome desenvolvida por https://siderite.dev, e sua principal característica é "Resolve DNS addresses based on previously working IPs".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Siderite's DNS Resolver

Baixe arquivos de extensão Siderite's DNS Resolver no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Siderite's DNS Resolver Siderite's DNS Resolver
ID fjjomhepnnicmnkfiopeimfpdbpegboa
URL Oficial https://chromewebstore.google.com/detail/siderites-dns-resolver/fjjomhepnnicmnkfiopeimfpdbpegboa
Descrição Resolve DNS addresses based on previously working IPs
Tamanho do Arquivo 58.61 KB
Contagem de Instalações 1,651
Versão Atual 0.0.3
Última Atualização 2019-10-29
Data de Publicação 2019-10-29
Classificação 4.20/5 Total de 5 Avaliações
Desenvolvedor https://siderite.dev
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://siderite.dev/blog/dns-resolver-chrome-extension-to-help.html/
URL da Página de Política de Privacidade https://www.freeprivacypolicy.com/live/848ecff6-1db4-4f20-9cec-052b3c296aac
Idiomas Suportados 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"
    ]
}