nos2x

Nostr Signer Extension

Wat is nos2x?

nos2x is een Chrome-extensie ontwikkeld door fiatjaf, en de belangrijkste functie is "Nostr Signer Extension".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie nos2x

Download nos2x-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Implements NIP-07.                    

Basisinformatie over de Extensie

Naam nos2x nos2x
ID kpgefcfmnafjgpblomihpgmejjdanjjp
Officiële URL https://chromewebstore.google.com/detail/nos2x/kpgefcfmnafjgpblomihpgmejjdanjjp
Beschrijving Nostr Signer Extension
Bestandsgrootte 677 KB
Aantal Installaties 5,339
Huidige Versie 2.2.0
Laatst Bijgewerkt 2023-08-07
Publicatiedatum 2022-01-28
Beoordeling 4.82/5 Totaal 11 Beoordelingen
Ontwikkelaar fiatjaf
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/fiatjaf/nos2x
Help Pagina-URL https://github.com/fiatjaf/nos2x
URL van de Privacybeleid Pagina https://github.com/fiatjaf/kwh/blob/master/docs/privacy-policy.md
Ondersteunde Talen 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:*\/*"
            ]
        }
    ]
}