AKA Profiles

Nostr Signer Extension supporting multiple public / private key pairs.

什么是AKA Profiles?

AKA Profiles是由https://akaprofiles.com开发的Chrome扩展程序,该扩展的主要功能是“Nostr Signer Extension supporting multiple public / private key pairs.”。

扩展截图

screenshot

下载AKA Profiles扩展crx文件

下载AKA Profiles扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Are you an advanced Nostr user?

AKA Profiles is a Nostr signing extension (NIP-07)  supporting  multiple public / private key pairs.

Version 1.05
- fixed user interface issues
- updated permission model to match nos2x
- support for NIP-07 account switching

Key Features
- Keeps your private key safe as local signing replaces sharing your private key
- Chose which public key to share per app request
- Each key pair has its own app permissions & preferred relays 
- Same app permission model as nos2x (forever, 5 minutes, just once)
- supports NIP-04 encryption / decryption
- supports NIP-26 delegated event signing requests

The primary purpose is enabling web apps to request the signing of events using the locally stored private key, thereby eliminating the need to give the private key to web apps.

It also stores a list of your public keys, reducing copying / pasting of keys into various apps.                    

扩展基本信息

名称 AKA Profiles AKA Profiles
ID ncmflpbbagcnakkolfpcpogheckolnad
官方URL https://chromewebstore.google.com/detail/aka-profiles/ncmflpbbagcnakkolfpcpogheckolnad
简介 Nostr Signer Extension supporting multiple public / private key pairs.
文件大小 284 KB
安装次数 107
当前版本 1.0.5
更新时间 2023-09-26
上架时间 2023-05-19
开发者 https://akaprofiles.com
电子邮箱 [email protected]
付费类型 free
扩展官网 https://www.akaprofiles.com
隐私政策页面URL https://www.akaprofiles.com/privacy
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "AKA Profiles",
    "description": "Nostr Signer Extension supporting multiple public \/ private key pairs.",
    "version": "1.0.5",
    "manifest_version": 3,
    "action": {
        "default_popup": "app.html",
        "default_title": "AKA Profiles",
        "default_icon": "icon.png"
    },
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "options_page": "app.html#\/options",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "browser-polyfill.js",
                "contentScript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "nostr-provider.js"
            ],
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/localhost:*\/*"
            ]
        }
    ]
}