IPFS Search
A simple tool to search on IPFS.
Vad är IPFS Search?
IPFS Search är en Chrome-tillägg utvecklad av Samuele Marro, och dess huvudfunktion är "A simple tool to search on IPFS.".
Tilläggsskärmbilder
Ladda ner IPFS Search-förlängningens CRX-fil
Ladda ner IPFS Search-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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äggande Information om Tillägg
Namn | IPFS Search |
ID | lffnkibaadgoclbhfajpnhlobdoomfeh |
Officiell webbadress | https://chromewebstore.google.com/detail/ipfs-search/lffnkibaadgoclbhfajpnhlobdoomfeh |
Beskrivning | A simple tool to search on IPFS. |
Filstorlek | 25.42 KB |
Antal Installationer | 960 |
Aktuell Version | 1.0.0 |
Senast Uppdaterad | 2021-03-28 |
Publiceringsdatum | 2021-03-28 |
Betyg | 5.00/5 Totalt 1 Betyg |
Utvecklare | Samuele Marro |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/samuelemarro/IPFS-Chrome-Search |
Hjälpsida URL | https://github.com/samuelemarro/IPFS-Chrome-Search/issues |
Stödda Språk | 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" ] } |