DNS over Wikipedia

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

Что такое DNS over Wikipedia?

DNS over Wikipedia - это расширение Chrome, разработанное aaron.janse, и его основная функция - "Resolve .idk domains using the URL provided by the Wikipedia page for a given topic".

Снимки экрана расширения

Скачать файл CRX расширения DNS over Wikipedia

Скачайте файлы расширений 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.                    

Основная информация о расширении

Название DNS over Wikipedia DNS over Wikipedia
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"
    }
}