IPFS Search
A simple tool to search on IPFS.
什麼是IPFS Search?
IPFS Search是由Samuele Marro開發的Chrome擴展程式,該擴展的主要功能是“A simple tool to search on IPFS.”。
擴展截圖
下載IPFS Search擴展crx文件
下載IPFS Search擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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. 擴展基本資訊
| 名稱 | |
| ID | lffnkibaadgoclbhfajpnhlobdoomfeh |
| 官方網址 | https://chromewebstore.google.com/detail/ipfs-search/lffnkibaadgoclbhfajpnhlobdoomfeh |
| 簡介 | A simple tool to search on IPFS. |
| 檔案大小 | 25.42 KB |
| 安裝次數 | 960 |
| 目前版本 | 1.0.0 |
| 更新時間 | 2021-03-28 |
| 上架時間 | 2021-03-28 |
| 評分 | 5.00/5 共 1 次評分 |
| 開發者 | Samuele Marro |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://github.com/samuelemarro/IPFS-Chrome-Search |
| 說明頁面URL | https://github.com/samuelemarro/IPFS-Chrome-Search/issues |
| 支援的語言 | 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"
]
} | |