Inscription Helper

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

Cos'è Inscription Helper?

Inscription Helper è un'estensione di Chrome sviluppata da Jerry the Martian, e la sua funzione principale è "Inscription Helper is designed to seamlessly load IPFS files directly from Bitcoin Ordinals inscriptions.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Inscription Helper

Scarica i file di estensione Inscription Helper in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Inscription Helper Inscription Helper
ID pkkadlgleljakhldkfolmhippjegighm
URL Ufficiale https://chromewebstore.google.com/detail/inscription-helper/pkkadlgleljakhldkfolmhippjegighm
Descrizione Inscription Helper is designed to seamlessly load IPFS files directly from Bitcoin Ordinals inscriptions.
Dimensione del File 9.64 KB
Conteggio Installazioni 157
Versione Corrente 0.1.1
Ultimo Aggiornamento 2023-12-11
Data di Pubblicazione 2023-12-11
Sviluppatore Jerry the Martian
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/jerryfane/inscription-helper
Lingue Supportate 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\/*"
            ]
        }
    ]
}