DNS over Wikipedia
Resolve .idk domains using the URL provided by the Wikipedia page for a given topic
Wat is DNS over Wikipedia?
DNS over Wikipedia is een Chrome-extensie ontwikkeld door aaron.janse, en de belangrijkste functie is "Resolve .idk domains using the URL provided by the Wikipedia page for a given topic".
Extensie Screenshots
Download het CRX-bestand van de extensie DNS over Wikipedia
Download DNS over Wikipedia-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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. Basisinformatie over de Extensie
| Naam | |
| ID | mjmjpfncapfopnommmngnmjalkopljji |
| Officiële URL | https://chromewebstore.google.com/detail/dns-over-wikipedia/mjmjpfncapfopnommmngnmjalkopljji |
| Beschrijving | Resolve .idk domains using the URL provided by the Wikipedia page for a given topic |
| Bestandsgrootte | 3.8 KB |
| Aantal Installaties | 272 |
| Huidige Versie | 0.0.5 |
| Laatst Bijgewerkt | 2020-04-10 |
| Publicatiedatum | 2020-04-10 |
| Beoordeling | 5.00/5 Totaal 7 Beoordelingen |
| Ontwikkelaar | aaron.janse |
| Betalingswijze | free |
| Extensiewebsite | https://github.com/aaronjanse/dns-over-wikipedia |
| Help Pagina-URL | https://github.com/aaronjanse/dns-over-wikipedia/issues |
| Ondersteunde Talen | 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"
}
} | |