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 |
电子邮箱 | [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\/*" ] } ] } |