Inscription Helper

Inscription Helper is designed to seamlessly load IPFS files directly from Bitcoin Ordinals inscriptions.

Inscription Helper là gì?

Inscription Helper là một tiện ích mở rộng Chrome được phát triển bởi Jerry the Martian, và tính năng chính của nó là "Inscription Helper is designed to seamlessly load IPFS files directly from Bitcoin Ordinals inscriptions.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Inscription Helper

Tải xuống các tệp mở rộng Inscription Helper dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Inscription Helper Inscription Helper
ID pkkadlgleljakhldkfolmhippjegighm
URL Chính Thức https://chromewebstore.google.com/detail/inscription-helper/pkkadlgleljakhldkfolmhippjegighm
Mô tả Inscription Helper is designed to seamlessly load IPFS files directly from Bitcoin Ordinals inscriptions.
Kích Thước Tệp 9.64 KB
Số Lần Cài Đặt 157
Phiên Bản Hiện Tại 0.1.1
Cập Nhật Lần Cuối 2023-12-11
Ngày Phát Hành 2023-12-11
Nhà Phát Triển Jerry the Martian
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/jerryfane/inscription-helper
Ngôn Ngữ Được Hỗ Trợ 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\/*"
            ]
        }
    ]
}