IPFS Support

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

IPFS Support란 무엇입니까?

IPFS Support은(는) Waren Gonzaga에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adding standalone IPFS native URL support for chromium based browsers without installing IPFS in your machine."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 IPFS Support IPFS Support
ID bgkgpjkailocmhjioiakogohkahhfbhp
공식 URL https://chromewebstore.google.com/detail/ipfs-support/bgkgpjkailocmhjioiakogohkahhfbhp
설명 Adding standalone IPFS native URL support for chromium based browsers without installing IPFS in your machine.
파일 크기 53.05 KB
설치 횟수 86
현재 버전 0.1.2
최근 업데이트 2024-01-02
출시 날짜 2023-01-06
평점 5.00/5 총 2 개의 평점
개발자 Waren Gonzaga
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/warengonzaga/ipfs-support-extension
도움말 페이지 URL https://github.com/warengonzaga/ipfs-support-extension/issues
지원되는 언어 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
}