nos2x

Nostr Signer Extension

Co to jest nos2x?

nos2x to rozszerzenie Chrome opracowane przez fiatjaf, a jego główną funkcją jest „Nostr Signer Extension”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia nos2x

Pobierz pliki rozszerzeń nos2x w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Implements NIP-07.                    

Podstawowe informacje o rozszerzeniu

Nazwa nos2x nos2x
ID kpgefcfmnafjgpblomihpgmejjdanjjp
Oficjalny URL https://chromewebstore.google.com/detail/nos2x/kpgefcfmnafjgpblomihpgmejjdanjjp
Opis Nostr Signer Extension
Rozmiar pliku 677 KB
Liczba instalacji 5,339
Aktualna Wersja 2.2.0
Ostatnia Aktualizacja 2023-08-07
Data Publikacji 2022-01-28
Ocena 4.82/5 Łącznie 11 Oceny
Deweloper fiatjaf
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/fiatjaf/nos2x
Adres URL Strony Pomocy https://github.com/fiatjaf/nos2x
Adres URL Strony Polityki Prywatności https://github.com/fiatjaf/kwh/blob/master/docs/privacy-policy.md
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "nos2x",
    "description": "Nostr Signer Extension",
    "version": "2.2.0",
    "homepage_url": "https:\/\/github.com\/fiatjaf\/nos2x",
    "manifest_version": 3,
    "icons": {
        "16": "icons\/16x16.png",
        "32": "icons\/32x32.png",
        "48": "icons\/48x48.png",
        "128": "icons\/128x128.png"
    },
    "options_page": "options.html",
    "background": {
        "service_worker": "background.build.js"
    },
    "action": {
        "default_title": "nos2x",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script.build.js"
            ],
            "all_frames": true
        }
    ],
    "permissions": [
        "storage"
    ],
    "optional_permissions": [
        "notifications"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "nostr-provider.js"
            ],
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/localhost:*\/*"
            ]
        }
    ]
}