DNS over Wikipedia

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

Was ist DNS over Wikipedia?

DNS over Wikipedia ist eine Chrome-Erweiterung, die von aaron.janse entwickelt wurde, und ihr Hauptmerkmal ist "Resolve .idk domains using the URL provided by the Wikipedia page for a given topic".

Erweiterungsscreenshots

DNS over Wikipedia-Erweiterungs-CRX-Datei herunterladen

Laden Sie DNS over Wikipedia-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name DNS over Wikipedia DNS over Wikipedia
ID mjmjpfncapfopnommmngnmjalkopljji
Offizielle URL https://chromewebstore.google.com/detail/dns-over-wikipedia/mjmjpfncapfopnommmngnmjalkopljji
Beschreibung Resolve .idk domains using the URL provided by the Wikipedia page for a given topic
Dateigröße 3.8 KB
Installationsanzahl 272
Aktuelle Version 0.0.5
Letztes Update 2020-04-10
Veröffentlichungsdatum 2020-04-10
Bewertung 5.00/5 Insgesamt 7 Bewertungen
Entwickler aaron.janse
Zahlungsart free
Erweiterungswebsite https://github.com/aaronjanse/dns-over-wikipedia
Hilfeseite URL https://github.com/aaronjanse/dns-over-wikipedia/issues
Unterstützte Sprachen 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"
    }
}