IPFS Search

A simple tool to search on IPFS.

Co to jest IPFS Search?

IPFS Search to rozszerzenie Chrome opracowane przez Samuele Marro, a jego główną funkcją jest „A simple tool to search on IPFS.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia IPFS Search

Pobierz pliki rozszerzeń IPFS Search w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa IPFS Search IPFS Search
ID lffnkibaadgoclbhfajpnhlobdoomfeh
Oficjalny URL https://chromewebstore.google.com/detail/ipfs-search/lffnkibaadgoclbhfajpnhlobdoomfeh
Opis A simple tool to search on IPFS.
Rozmiar pliku 25.42 KB
Liczba instalacji 960
Aktualna Wersja 1.0.0
Ostatnia Aktualizacja 2021-03-28
Data Publikacji 2021-03-28
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper Samuele Marro
E-mail marrosamuele@gmail.com
Typ Płatności free
Strona Rozszerzenia https://github.com/samuelemarro/IPFS-Chrome-Search
Adres URL Strony Pomocy https://github.com/samuelemarro/IPFS-Chrome-Search/issues
Obsługiwane Języki 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"
    ]
}