IPFS Support

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

Wat is IPFS Support?

IPFS Support is een Chrome-extensie ontwikkeld door Waren Gonzaga, en de belangrijkste functie is "Adding standalone IPFS native URL support for chromium based browsers without installing IPFS in your machine.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie IPFS Support

Download IPFS Support-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam IPFS Support IPFS Support
ID bgkgpjkailocmhjioiakogohkahhfbhp
Officiële URL https://chromewebstore.google.com/detail/ipfs-support/bgkgpjkailocmhjioiakogohkahhfbhp
Beschrijving Adding standalone IPFS native URL support for chromium based browsers without installing IPFS in your machine.
Bestandsgrootte 53.05 KB
Aantal Installaties 86
Huidige Versie 0.1.2
Laatst Bijgewerkt 2024-01-02
Publicatiedatum 2023-01-06
Beoordeling 5.00/5 Totaal 2 Beoordelingen
Ontwikkelaar Waren Gonzaga
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/warengonzaga/ipfs-support-extension
Help Pagina-URL https://github.com/warengonzaga/ipfs-support-extension/issues
Ondersteunde Talen 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
}