Siderite's DNS Resolver

Resolve DNS addresses based on previously working IPs

Siderite's DNS Resolver क्या है?

Siderite's DNS Resolver https://siderite.dev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Resolve DNS addresses based on previously working IPs"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Siderite's DNS Resolver एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    ]
}