Inscription Helper
Inscription Helper is designed to seamlessly load IPFS files directly from Bitcoin Ordinals inscriptions.
Τι είναι το Inscription Helper;
Το Inscription Helper είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Jerry the Martian, και η κύρια λειτουργία του είναι "Inscription Helper is designed to seamlessly load IPFS files directly from Bitcoin Ordinals inscriptions.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Inscription Helper
Λήψη αρχείων επέκτασης Inscription Helper σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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
Βασικές Πληροφορίες Επέκτασης
Όνομα | Inscription Helper |
ID | pkkadlgleljakhldkfolmhippjegighm |
Επίσημο URL | https://chromewebstore.google.com/detail/inscription-helper/pkkadlgleljakhldkfolmhippjegighm |
Περιγραφή | Inscription Helper is designed to seamlessly load IPFS files directly from Bitcoin Ordinals inscriptions. |
Μέγεθος Αρχείου | 9.64 KB |
Αριθμός Εγκαταστάσεων | 157 |
Τρέχουσα Έκδοση | 0.1.1 |
Τελευταία Ενημέρωση | 2023-12-11 |
Ημερομηνία Δημοσίευσης | 2023-12-11 |
Προγραμματιστής | Jerry the Martian |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/jerryfane/inscription-helper |
Υποστηριζόμενες Γλώσσες | 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\/*" ] } ] } |