Inscription Helper

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

What is Inscription Helper?

Inscription Helper is a Chrome extension developed by Jerry the Martian, and its main feature is "Inscription Helper is designed to seamlessly load IPFS files directly from Bitcoin Ordinals inscriptions.".

Extension Screenshots

screenshot

Download Inscription Helper Extension CRX File

Download Inscription Helper extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Inscription Helper Inscription Helper
ID pkkadlgleljakhldkfolmhippjegighm
Official URL https://chromewebstore.google.com/detail/inscription-helper/pkkadlgleljakhldkfolmhippjegighm
Description Inscription Helper is designed to seamlessly load IPFS files directly from Bitcoin Ordinals inscriptions.
File Size 9.64 KB
Installation Count 157
Current Version 0.1.1
Last Updated 2023-12-11
Publish Date 2023-12-11
Developer Jerry the Martian
Email [email protected]
Payment Type free
Extension Website https://github.com/jerryfane/inscription-helper
Supported Languages 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\/*"
            ]
        }
    ]
}