IPFS Search

A simple tool to search on IPFS.

¿Qué es IPFS Search?

IPFS Search es una extensión de Chrome desarrollada por Samuele Marro, y su función principal es "A simple tool to search on IPFS.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión IPFS Search

Descarga archivos de extensión IPFS Search en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre IPFS Search IPFS Search
ID lffnkibaadgoclbhfajpnhlobdoomfeh
URL Oficial https://chromewebstore.google.com/detail/ipfs-search/lffnkibaadgoclbhfajpnhlobdoomfeh
Descripción A simple tool to search on IPFS.
Tamaño del Archivo 25.42 KB
Cantidad de Instalaciones 960
Versión Actual 1.0.0
Última Actualización 2021-03-28
Fecha de Publicación 2021-03-28
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador Samuele Marro
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/samuelemarro/IPFS-Chrome-Search
URL de la Página de Ayuda https://github.com/samuelemarro/IPFS-Chrome-Search/issues
Idiomas Soportados 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"
    ]
}