Inscription Helper

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

Inscription Helper क्या है?

Inscription Helper Jerry the Martian द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Inscription Helper is designed to seamlessly load IPFS files directly from Bitcoin Ordinals inscriptions."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Inscription Helper एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 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\/*"
            ]
        }
    ]
}