Inscription Helper
Inscription Helper is designed to seamlessly load IPFS files directly from Bitcoin Ordinals inscriptions.
Vad är Inscription Helper?
Inscription Helper är en Chrome-tillägg utvecklad av Jerry the Martian, och dess huvudfunktion är "Inscription Helper is designed to seamlessly load IPFS files directly from Bitcoin Ordinals inscriptions.".
Tilläggsskärmbilder
Ladda ner Inscription Helper-förlängningens CRX-fil
Ladda ner Inscription Helper-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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äggande Information om Tillägg
Namn | Inscription Helper |
ID | pkkadlgleljakhldkfolmhippjegighm |
Officiell webbadress | https://chromewebstore.google.com/detail/inscription-helper/pkkadlgleljakhldkfolmhippjegighm |
Beskrivning | Inscription Helper is designed to seamlessly load IPFS files directly from Bitcoin Ordinals inscriptions. |
Filstorlek | 9.64 KB |
Antal Installationer | 157 |
Aktuell Version | 0.1.1 |
Senast Uppdaterad | 2023-12-11 |
Publiceringsdatum | 2023-12-11 |
Utvecklare | Jerry the Martian |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/jerryfane/inscription-helper |
Stödda Språk | 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\/*" ] } ] } |