DNS over Wikipedia
Resolve .idk domains using the URL provided by the Wikipedia page for a given topic
What is DNS over Wikipedia?
DNS over Wikipedia is a Chrome extension developed by aaron.janse, and its main feature is "Resolve .idk domains using the URL provided by the Wikipedia page for a given topic".
Extension Screenshots
Download DNS over Wikipedia Extension CRX File
Download DNS over Wikipedia extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | DNS over Wikipedia |
ID | mjmjpfncapfopnommmngnmjalkopljji |
Official URL | https://chromewebstore.google.com/detail/dns-over-wikipedia/mjmjpfncapfopnommmngnmjalkopljji |
Description | Resolve .idk domains using the URL provided by the Wikipedia page for a given topic |
File Size | 3.8 KB |
Installation Count | 272 |
Current Version | 0.0.5 |
Last Updated | 2020-04-10 |
Publish Date | 2020-04-10 |
Rating | 5.00/5 Total 7 Ratings |
Developer | aaron.janse |
Payment Type | free |
Extension Website | https://github.com/aaronjanse/dns-over-wikipedia |
Help Page URL | https://github.com/aaronjanse/dns-over-wikipedia/issues |
Supported Languages | 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" } } |