IPFS Search

A simple tool to search on IPFS.

IPFS Searchคืออะไร?

IPFS Search เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Samuele Marro และคุณลักษณะหลักของมันคือ "A simple tool to search on IPFS."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย IPFS Search

ดาวน์โหลดไฟล์ส่วนขยาย 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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ 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"
    ]
}