DNS over Wikipedia

Resolve .idk domains using the URL provided by the Wikipedia page for a given topic

Apa itu DNS over Wikipedia?

DNS over Wikipedia adalah ekstensi Chrome yang dikembangkan oleh aaron.janse, dan fitur utamanya adalah "Resolve .idk domains using the URL provided by the Wikipedia page for a given topic".

Screenshot Ekstensi

Unduh Berkas CRX Ekstensi DNS over Wikipedia

Unduh file ekstensi DNS over Wikipedia dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        Wikipedia keeps track of official URLs for popular websites. With DNS over Wikipedia installed, domains ending with `.idk` are resolved by searching Wikipedia and extracting the relevant URL from the infobox.

Example:
1. Type `scihub.idk/` in the browser address bar
2. Observe redirect to `https://sci-hub.tw`

Written by Aaron Janse and Vihan Bhargava.                    

Informasi Dasar Ekstensi

Nama DNS over Wikipedia DNS over Wikipedia
ID mjmjpfncapfopnommmngnmjalkopljji
URL Resmi https://chromewebstore.google.com/detail/dns-over-wikipedia/mjmjpfncapfopnommmngnmjalkopljji
Deskripsi Resolve .idk domains using the URL provided by the Wikipedia page for a given topic
Ukuran File 3.8 KB
Jumlah Instalasi 272
Versi Saat Ini 0.0.5
Terakhir Diperbarui 2020-04-10
Tanggal Publikasi 2020-04-10
Penilaian 5.00/5 Total 7 Penilaian
Pengembang aaron.janse
Tipe Pembayaran free
Situs Ekstensi https://github.com/aaronjanse/dns-over-wikipedia
URL Halaman Bantuan https://github.com/aaronjanse/dns-over-wikipedia/issues
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "DNS over Wikipedia",
    "version": "0.0.5",
    "description": "Resolve .idk domains using the URL provided by the Wikipedia page for a given topic",
    "homepage_url": "https:\/\/github.com\/aaronjanse\/dns-over-wikipedia",
    "background": {
        "scripts": [
            "common.js"
        ]
    },
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "*:\/\/*.idk\/*",
        "https:\/\/en.wikipedia.org\/*"
    ],
    "omnibox": {
        "keyword": "idk"
    }
}