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.”。
擴展截圖
下載IPFS Support擴展crx文件
下載IPFS Support擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
ID | bgkgpjkailocmhjioiakogohkahhfbhp |
官方網址 | 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 } |