Inscription Helper

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

Hvad er Inscription Helper?

Inscription Helper er en Chrome-udvidelse udviklet af Jerry the Martian, og dens hovedfunktion er "Inscription Helper is designed to seamlessly load IPFS files directly from Bitcoin Ordinals inscriptions.".

Udvidelsesskærmbilleder

screenshot

Download Inscription Helper-udvidelses-CRX-fil

Download Inscription Helper-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn Inscription Helper Inscription Helper
ID pkkadlgleljakhldkfolmhippjegighm
Officiel URL https://chromewebstore.google.com/detail/inscription-helper/pkkadlgleljakhldkfolmhippjegighm
Beskrivelse Inscription Helper is designed to seamlessly load IPFS files directly from Bitcoin Ordinals inscriptions.
Filstørrelse 9.64 KB
Antal Installationer 157
Nuværende Version 0.1.1
Senest Opdateret 2023-12-11
Udgivelsesdato 2023-12-11
Udvikler Jerry the Martian
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/jerryfane/inscription-helper
Understøttede Sprog 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\/*"
            ]
        }
    ]
}