IPFS Support

Adding standalone IPFS native URL support for chromium based browsers without installing IPFS in your machine.

IPFS Support là gì?

IPFS Support là một tiện ích mở rộng Chrome được phát triển bởi Waren Gonzaga, và tính năng chính của nó là "Adding standalone IPFS native URL support for chromium based browsers without installing IPFS in your machine.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng IPFS Support

Tải xuống các tệp mở rộng IPFS Support dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        If you don't want to install and run IPFS locally on your machine and want to browse IPFS native URLs then this extension is for you.

Contribute: https://github.com/warengonzaga/ipfs-support-extension
Sponsor: https://github.com/sponsors/warengonzaga                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên IPFS Support IPFS Support
ID bgkgpjkailocmhjioiakogohkahhfbhp
URL Chính Thức https://chromewebstore.google.com/detail/ipfs-support/bgkgpjkailocmhjioiakogohkahhfbhp
Mô tả Adding standalone IPFS native URL support for chromium based browsers without installing IPFS in your machine.
Kích Thước Tệp 53.05 KB
Số Lần Cài Đặt 86
Phiên Bản Hiện Tại 0.1.2
Cập Nhật Lần Cuối 2024-01-02
Ngày Phát Hành 2023-01-06
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Waren Gonzaga
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/warengonzaga/ipfs-support-extension
URL Trang Trợ Giúp https://github.com/warengonzaga/ipfs-support-extension/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "IPFS Support",
    "description": "Adding standalone IPFS native URL support for chromium based browsers without installing IPFS in your machine.",
    "version": "0.1.2",
    "author": "Waren Gonzaga",
    "icons": {
        "16": "assets\/icon16.png",
        "19": "assets\/icon19.png",
        "32": "assets\/icon32.png",
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/google.com\/search?q=ipfs%3A%2F%2F*",
                "https:\/\/www.google.com\/search?q=ipfs%3A%2F%2F*",
                "https:\/\/bing.com\/search?q=ipfs%3A%2F%2F*",
                "https:\/\/www.bing.com\/search?q=ipfs%3A%2F%2F*",
                "https:\/\/duckduckgo.com\/?q=ipfs%3A%2F%2F*",
                "https:\/\/www.duckduckgo.com\/?q=ipfs%3A%2F%2*",
                "https:\/\/search.brave.com\/search?q=ipfs%3A%2F%2*",
                "https:\/\/www.search.brave.com\/search?q=ipfs%3A%2F%2*",
                "https:\/\/search.yahoo.com\/search?p=ipfs%3A%2F%2*",
                "https:\/\/www.search.yahoo.com\/search?p=ipfs%3A%2F%2*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "action": {
        "default_icon": "assets\/icon128.png",
        "default_title": "IPFS Support",
        "default_popup": "popup.html"
    },
    "manifest_version": 3
}