IPFS Search

A simple tool to search on IPFS.

IPFS Search란 무엇입니까?

IPFS Search은(는) Samuele Marro에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A simple tool to search on IPFS."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

IPFS Search 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 IPFS Search IPFS Search
ID lffnkibaadgoclbhfajpnhlobdoomfeh
공식 URL 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"
    ]
}