Inscription Helper
Inscription Helper is designed to seamlessly load IPFS files directly from Bitcoin Ordinals inscriptions.
Co je Inscription Helper?
Inscription Helper je rozšíření Chrome vyvinuté Jerry the Martian, a jeho hlavní funkcí je „Inscription Helper is designed to seamlessly load IPFS files directly from Bitcoin Ordinals inscriptions.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Inscription Helper
Stáhněte si soubory rozšíření Inscription Helper ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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
Základní Informace o Rozšíření
Název | Inscription Helper |
ID | pkkadlgleljakhldkfolmhippjegighm |
Oficiální URL | https://chromewebstore.google.com/detail/inscription-helper/pkkadlgleljakhldkfolmhippjegighm |
Popis | Inscription Helper is designed to seamlessly load IPFS files directly from Bitcoin Ordinals inscriptions. |
Velikost souboru | 9.64 KB |
Počet instalací | 157 |
Aktuální Verze | 0.1.1 |
Poslední Aktualizace | 2023-12-11 |
Datum Vydání | 2023-12-11 |
Vývojář | Jerry the Martian |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/jerryfane/inscription-helper |
Podporované Jazyky | 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\/*" ] } ] } |