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 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/
عنوان صفحة سياسة الخصوصية 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"
    ]
}