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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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\/*" ] } ] } |