Inscription Helper

Inscription Helper is designed to seamlessly load IPFS files directly from Bitcoin Ordinals inscriptions.

Co to jest Inscription Helper?

Inscription Helper to rozszerzenie Chrome opracowane przez Jerry the Martian, a jego główną funkcją jest „Inscription Helper is designed to seamlessly load IPFS files directly from Bitcoin Ordinals inscriptions.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Inscription Helper

Pobierz pliki rozszerzeń Inscription Helper w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        Inscription Helper is a Chrome extension designed to seamlessly load IPFS (InterPlanetary File System) files directly from Bitcoin Ordinals inscriptions. This extension is especially useful for those interacting with Bitcoin Ordinals, as it automatically recognizes inscriptions requesting files with ipfs:// protocol and retrieves them using IPFS.

Source code: https://github.com/jerryfane/inscription-helper                    

Podstawowe informacje o rozszerzeniu

Nazwa Inscription Helper Inscription Helper
ID pkkadlgleljakhldkfolmhippjegighm
Oficjalny URL https://chromewebstore.google.com/detail/inscription-helper/pkkadlgleljakhldkfolmhippjegighm
Opis Inscription Helper is designed to seamlessly load IPFS files directly from Bitcoin Ordinals inscriptions.
Rozmiar pliku 9.64 KB
Liczba instalacji 157
Aktualna Wersja 0.1.1
Ostatnia Aktualizacja 2023-12-11
Data Publikacji 2023-12-11
Deweloper Jerry the Martian
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/jerryfane/inscription-helper
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Inscription Helper",
    "description": "Inscription Helper is designed to seamlessly load IPFS files directly from Bitcoin Ordinals inscriptions.",
    "version": "0.1.1",
    "permissions": [
        "activeTab",
        "scripting",
        "storage"
    ],
    "background": {
        "service_worker": "\/src\/js\/background.js"
    },
    "action": {
        "default_popup": "\/src\/html\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/ordinals.com\/*"
            ],
            "js": [
                "\/src\/js\/content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "\/src\/js\/inject.js"
            ],
            "matches": [
                "https:\/\/ordinals.com\/*"
            ]
        }
    ]
}