Nostr Connect

Nostr Signer Extension

Что такое Nostr Connect?

Nostr Connect - это расширение Chrome, разработанное reyanostr001, и его основная функция - "Nostr Signer Extension".

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

screenshot
screenshot

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

Скачайте файлы расширений Nostr Connect в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        This extension allows you to sign Nostr events on web-apps without having to give them your keys.

Designed by: https://njump.me/npub1r0rs5q2gk0e3dk3nlc7gnu378ec6cnlenqp8a3cjhyzu6f8k5sgs4sq9ac

Fork of nos2x by https://njump.me/npub180cvv07tjdrrgpa0j7j7tmnyl2yr6yr7l8j4s3evf6u64th6gkwsyjh6w6                    

Основная информация о расширении

Название Nostr Connect Nostr Connect
ID ampjiinddmggbhpebhaegmjkbbeofoaj
Официальный URL https://chromewebstore.google.com/detail/nostr-connect/ampjiinddmggbhpebhaegmjkbbeofoaj
Описание Nostr Signer Extension
Размер файла 693 KB
Количество установок 102
Текущая Версия 0.1.0
Последнее Обновление 2023-11-23
Дата публикации 2023-11-23
Рейтинг 5.00/5 Всего 1 оценок
Разработчик reyanostr001
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/reyamir/nostr-connect
URL страницы помощи https://github.com/reyamir/nostr-connect/issues
URL страницы политики конфиденциальности https://github.com/fiatjaf/kwh/blob/master/docs/privacy-policy.md
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Nostr Connect",
    "description": "Nostr Signer Extension",
    "version": "0.1.0",
    "homepage_url": "https:\/\/github.com\/reyamir\/nostr-connect",
    "manifest_version": 3,
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "options_page": "options.html",
    "background": {
        "service_worker": "\/build\/background.build.js"
    },
    "action": {
        "default_title": "Nostr Connect",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "\/build\/content-script.build.js"
            ],
            "all_frames": true
        }
    ],
    "permissions": [
        "storage"
    ],
    "optional_permissions": [
        "notifications"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "nostr-provider.js"
            ],
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/localhost:*\/*"
            ]
        }
    ]
}