Inscription Helper
Inscription Helper is designed to seamlessly load IPFS files directly from Bitcoin Ordinals inscriptions.
Was ist Inscription Helper?
Inscription Helper ist eine Chrome-Erweiterung, die von Jerry the Martian entwickelt wurde, und ihr Hauptmerkmal ist "Inscription Helper is designed to seamlessly load IPFS files directly from Bitcoin Ordinals inscriptions.".
Erweiterungsscreenshots
Inscription Helper-Erweiterungs-CRX-Datei herunterladen
Laden Sie Inscription Helper-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | Inscription Helper |
ID | pkkadlgleljakhldkfolmhippjegighm |
Offizielle URL | https://chromewebstore.google.com/detail/inscription-helper/pkkadlgleljakhldkfolmhippjegighm |
Beschreibung | Inscription Helper is designed to seamlessly load IPFS files directly from Bitcoin Ordinals inscriptions. |
Dateigröße | 9.64 KB |
Installationsanzahl | 157 |
Aktuelle Version | 0.1.1 |
Letztes Update | 2023-12-11 |
Veröffentlichungsdatum | 2023-12-11 |
Entwickler | Jerry the Martian |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/jerryfane/inscription-helper |
Unterstützte Sprachen | 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\/*" ] } ] } |