AKA Profiles

Nostr Signer Extension supporting multiple public / private key pairs.

AKA Profiles là gì?

AKA Profiles là một tiện ích mở rộng Chrome được phát triển bởi https://akaprofiles.com, và tính năng chính của nó là "Nostr Signer Extension supporting multiple public / private key pairs.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng AKA Profiles

Tải xuống các tệp mở rộng AKA Profiles dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên AKA Profiles AKA Profiles
ID ncmflpbbagcnakkolfpcpogheckolnad
URL Chính Thức https://chromewebstore.google.com/detail/aka-profiles/ncmflpbbagcnakkolfpcpogheckolnad
Mô tả Nostr Signer Extension supporting multiple public / private key pairs.
Kích Thước Tệp 284 KB
Số Lần Cài Đặt 107
Phiên Bản Hiện Tại 1.0.5
Cập Nhật Lần Cuối 2023-09-26
Ngày Phát Hành 2023-05-19
Nhà Phát Triển https://akaprofiles.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.akaprofiles.com
URL Trang Chính Sách Bảo Mật https://www.akaprofiles.com/privacy
Ngôn Ngữ Được Hỗ Trợ 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:*\/*"
            ]
        }
    ]
}