Siderite's DNS Resolver

Resolve DNS addresses based on previously working IPs

Τι είναι το Siderite's DNS Resolver;

Το Siderite's DNS Resolver είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://siderite.dev, και η κύρια λειτουργία του είναι "Resolve DNS addresses based on previously working IPs".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Siderite's DNS Resolver

Λήψη αρχείων επέκτασης 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
Επίσημο 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"
    ]
}