DNS over Wikipedia
Resolve .idk domains using the URL provided by the Wikipedia page for a given topic
什么是DNS over Wikipedia?
DNS over Wikipedia是由aaron.janse开发的Chrome扩展程序,该扩展的主要功能是“Resolve .idk domains using the URL provided by the Wikipedia page for a given topic”。
扩展截图
下载DNS over Wikipedia扩展crx文件
下载DNS over Wikipedia扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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. 扩展基本信息
| 名称 | |
| ID | mjmjpfncapfopnommmngnmjalkopljji |
| 官方URL | https://chromewebstore.google.com/detail/dns-over-wikipedia/mjmjpfncapfopnommmngnmjalkopljji |
| 简介 | Resolve .idk domains using the URL provided by the Wikipedia page for a given topic |
| 文件大小 | 3.8 KB |
| 安装次数 | 272 |
| 当前版本 | 0.0.5 |
| 更新时间 | 2020-04-10 |
| 上架时间 | 2020-04-10 |
| 评分 | 5.00/5 共7次评分 |
| 开发者 | aaron.janse |
| 付费类型 | free |
| 扩展官网 | https://github.com/aaronjanse/dns-over-wikipedia |
| 帮助页面URL | https://github.com/aaronjanse/dns-over-wikipedia/issues |
| 支持的语言 | 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"
}
} | |