Inscription Helper
Inscription Helper is designed to seamlessly load IPFS files directly from Bitcoin Ordinals inscriptions.
Inscription Helperとは何ですか?
Inscription HelperはJerry the Martianによって開発されたChromeの拡張機能で、その主な機能は「Inscription Helper is designed to seamlessly load IPFS files directly from Bitcoin Ordinals inscriptions.」です。
拡張機能のスクリーンショット
Inscription Helper拡張機能のCRXファイルをダウンロード
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 |
Eメール | [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\/*" ] } ] } |