Siderite's DNS Resolver

Resolve DNS addresses based on previously working IPs

Siderite's DNS Resolver là gì?

Siderite's DNS Resolver là một tiện ích mở rộng Chrome được phát triển bởi https://siderite.dev, và tính năng chính của nó là "Resolve DNS addresses based on previously working IPs".

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

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Siderite's DNS Resolver

Tải xuống các tệp mở rộng Siderite's DNS Resolver 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

                        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.                    

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

Tên Siderite's DNS Resolver Siderite's DNS Resolver
ID fjjomhepnnicmnkfiopeimfpdbpegboa
URL Chính Thức https://chromewebstore.google.com/detail/siderites-dns-resolver/fjjomhepnnicmnkfiopeimfpdbpegboa
Mô tả Resolve DNS addresses based on previously working IPs
Kích Thước Tệp 58.61 KB
Số Lần Cài Đặt 1,651
Phiên Bản Hiện Tại 0.0.3
Cập Nhật Lần Cuối 2019-10-29
Ngày Phát Hành 2019-10-29
Đánh Giá 4.20/5 Tổng số 5 Đánh Giá
Nhà Phát Triển https://siderite.dev
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://siderite.dev/blog/dns-resolver-chrome-extension-to-help.html/
URL Trang Chính Sách Bảo Mật https://www.freeprivacypolicy.com/live/848ecff6-1db4-4f20-9cec-052b3c296aac
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}