IPFS Search

A simple tool to search on IPFS.

Что такое IPFS Search?

IPFS Search - это расширение Chrome, разработанное Samuele Marro, и его основная функция - "A simple tool to search on IPFS.".

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

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения IPFS Search

Скачайте файлы расширений IPFS Search в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        This extension allows you to use ipfs-search's API directly from your search bar. Simply type "ipfs" + Tab/Space to activate it.

Features:
- Instant jump to first result: Simply type Space + Enter and you will be redirected to the first search result on IPFS;
- Configurable IPFS gateway: If your workstation doesn't run an IPFS server, you can use a gateway to jump to IPFS pages using http (default gateway: gateway.ipfs.io);
- Cached results for faster search.                    

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

Название IPFS Search IPFS Search
ID lffnkibaadgoclbhfajpnhlobdoomfeh
Официальный URL https://chromewebstore.google.com/detail/ipfs-search/lffnkibaadgoclbhfajpnhlobdoomfeh
Описание A simple tool to search on IPFS.
Размер файла 25.42 KB
Количество установок 960
Текущая Версия 1.0.0
Последнее Обновление 2021-03-28
Дата публикации 2021-03-28
Рейтинг 5.00/5 Всего 1 оценок
Разработчик Samuele Marro
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/samuelemarro/IPFS-Chrome-Search
URL страницы помощи https://github.com/samuelemarro/IPFS-Chrome-Search/issues
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "IPFS Search",
    "description": "A simple tool to search on IPFS.",
    "version": "1.0.0",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "omnibox": {
        "keyword": "ipfs"
    },
    "manifest_version": 2,
    "author": "Samuele Marro",
    "incognito": "split",
    "icons": {
        "16": "icons\/16.png",
        "32": "icons\/32.png",
        "64": "icons\/64.png",
        "128": "icons\/128.png"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true,
        "open_in_tab": false
    },
    "permissions": [
        "storage"
    ]
}