nos2x

Nostr Signer Extension

Qu'est-ce que nos2x ?

nos2x est une extension Chrome développée par fiatjaf, et sa fonction principale est "Nostr Signer Extension".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension nos2x

Téléchargez les fichiers d'extension nos2x au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Implements NIP-07.                    

Informations de Base sur l'Extension

Nom nos2x nos2x
ID kpgefcfmnafjgpblomihpgmejjdanjjp
URL Officiel https://chromewebstore.google.com/detail/nos2x/kpgefcfmnafjgpblomihpgmejjdanjjp
Description Nostr Signer Extension
Taille du Fichier 677 KB
Nombre d'Installations 5,339
Version Actuelle 2.2.0
Dernière Mise à Jour 2023-08-07
Date de Publication 2022-01-28
Évaluation 4.82/5 Total 11 Évaluations
Développeur fiatjaf
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/fiatjaf/nos2x
URL de la Page d'Aide https://github.com/fiatjaf/nos2x
URL de la Page de Politique de Confidentialité https://github.com/fiatjaf/kwh/blob/master/docs/privacy-policy.md
Langues Prises en Charge 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:*\/*"
            ]
        }
    ]
}