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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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