Inscription Helper
Inscription Helper is designed to seamlessly load IPFS files directly from Bitcoin Ordinals inscriptions.
Qu'est-ce que Inscription Helper ?
Inscription Helper est une extension Chrome développée par Jerry the Martian, et sa fonction principale est "Inscription Helper is designed to seamlessly load IPFS files directly from Bitcoin Ordinals inscriptions.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Inscription Helper
Téléchargez les fichiers d'extension Inscription Helper au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Inscription Helper |
ID | pkkadlgleljakhldkfolmhippjegighm |
URL Officiel | https://chromewebstore.google.com/detail/inscription-helper/pkkadlgleljakhldkfolmhippjegighm |
Description | Inscription Helper is designed to seamlessly load IPFS files directly from Bitcoin Ordinals inscriptions. |
Taille du Fichier | 9.64 KB |
Nombre d'Installations | 157 |
Version Actuelle | 0.1.1 |
Dernière Mise à Jour | 2023-12-11 |
Date de Publication | 2023-12-11 |
Développeur | Jerry the Martian |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/jerryfane/inscription-helper |
Langues Prises en Charge | 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\/*" ] } ] } |