IPFS Search
A simple tool to search on IPFS.
Was ist IPFS Search?
IPFS Search ist eine Chrome-Erweiterung, die von Samuele Marro entwickelt wurde, und ihr Hauptmerkmal ist "A simple tool to search on IPFS.".
Erweiterungsscreenshots
IPFS Search-Erweiterungs-CRX-Datei herunterladen
Laden Sie IPFS Search-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | lffnkibaadgoclbhfajpnhlobdoomfeh |
| Offizielle URL | https://chromewebstore.google.com/detail/ipfs-search/lffnkibaadgoclbhfajpnhlobdoomfeh |
| Beschreibung | A simple tool to search on IPFS. |
| Dateigröße | 25.42 KB |
| Installationsanzahl | 960 |
| Aktuelle Version | 1.0.0 |
| Letztes Update | 2021-03-28 |
| Veröffentlichungsdatum | 2021-03-28 |
| Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
| Entwickler | Samuele Marro |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/samuelemarro/IPFS-Chrome-Search |
| Hilfeseite URL | https://github.com/samuelemarro/IPFS-Chrome-Search/issues |
| Unterstützte Sprachen | 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"
]
} | |