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.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Inscription Helper

Скачайте файлы расширений 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
Официальный 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\/*"
            ]
        }
    ]
}