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.”。

擴展截圖

screenshot

下載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 Inscription Helper
ID pkkadlgleljakhldkfolmhippjegighm
官方網址 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\/*"
            ]
        }
    ]
}