IPFS Search

A simple tool to search on IPFS.

Hvad er IPFS Search?

IPFS Search er en Chrome-udvidelse udviklet af Samuele Marro, og dens hovedfunktion er "A simple tool to search on IPFS.".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot
screenshot

Download IPFS Search-udvidelses-CRX-fil

Download IPFS Search-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn IPFS Search IPFS Search
ID lffnkibaadgoclbhfajpnhlobdoomfeh
Officiel URL https://chromewebstore.google.com/detail/ipfs-search/lffnkibaadgoclbhfajpnhlobdoomfeh
Beskrivelse A simple tool to search on IPFS.
Filstørrelse 25.42 KB
Antal Installationer 960
Nuværende Version 1.0.0
Senest Opdateret 2021-03-28
Udgivelsesdato 2021-03-28
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler Samuele Marro
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/samuelemarro/IPFS-Chrome-Search
Hjælpeside-URL https://github.com/samuelemarro/IPFS-Chrome-Search/issues
Understøttede Sprog 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"
    ]
}