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:*\/*"
            ]
        }
    ]
}