nos2x

Nostr Signer Extension

Was ist nos2x?

nos2x ist eine Chrome-Erweiterung, die von fiatjaf entwickelt wurde, und ihr Hauptmerkmal ist "Nostr Signer Extension".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

nos2x-Erweiterungs-CRX-Datei herunterladen

Laden Sie nos2x-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Implements NIP-07.                    

Grundlegende Informationen zur Erweiterung

Name nos2x nos2x
ID kpgefcfmnafjgpblomihpgmejjdanjjp
Offizielle URL https://chromewebstore.google.com/detail/nos2x/kpgefcfmnafjgpblomihpgmejjdanjjp
Beschreibung Nostr Signer Extension
Dateigröße 677 KB
Installationsanzahl 5,339
Aktuelle Version 2.2.0
Letztes Update 2023-08-07
Veröffentlichungsdatum 2022-01-28
Bewertung 4.82/5 Insgesamt 11 Bewertungen
Entwickler fiatjaf
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/fiatjaf/nos2x
Hilfeseite URL https://github.com/fiatjaf/nos2x
URL der Datenschutzrichtlinien-Seite https://github.com/fiatjaf/kwh/blob/master/docs/privacy-policy.md
Unterstützte Sprachen 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:*\/*"
            ]
        }
    ]
}