Narwallets V4

NEAR protocol wallet

Narwallets V4란 무엇입니까?

Narwallets V4은(는) Narwallets.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "NEAR protocol wallet"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Narwallets V4 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Narwallets is a chrome-extension wallet for easily managing your NEAR accounts

Narwallets is the first chrome-extension wallet exclusive for the NEAR blockchain.

* NEP-141 Token Support
* Integrated Liquid Staking via Metapool.app
* Lockup Accounts Support

Changelog
2022-04-02 Better auto-refresh of on-chain balances
2022-10-09 V4 - Integrate with wallet-selector
2022-12-28 V4.0.5 - quick select account
2023-01-11 V4.0.6 - Implement NEP-408 for wallet-selector
2023-05-01 simpler account selection
2023-12-08 backup source for quotes                    

확장 프로그램 기본 정보

이름 Narwallets V4 Narwallets V4
ID lkpeokpdkmcdaiadpmnnpimlgmdobkdj
공식 URL https://chromewebstore.google.com/detail/narwallets-v4/lkpeokpdkmcdaiadpmnnpimlgmdobkdj
설명 NEAR protocol wallet
파일 크기 237 KB
설치 횟수 180
현재 버전 4.0.9
최근 업데이트 2023-12-11
출시 날짜 2022-10-15
개발자 Narwallets.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.narwallets.com
도움말 페이지 URL https://discord.gg/N38GQ2ejrS
개인정보 보호 정책 페이지 URL https://www.narwallets.com/privacy-policy.html
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Narwallets V4",
    "description": "NEAR protocol wallet",
    "version": "4.0.9",
    "action": {
        "default_popup": "index.html"
    },
    "background": {
        "service_worker": "dist\/background\/background.js",
        "type": "module"
    },
    "permissions": [
        "storage",
        "alarms"
    ],
    "icons": {
        "48": "icons\/logo_48.png",
        "128": "icons\/logo_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                "dist\/content-script.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "dist\/content-script.js",
                "dist\/injected-script.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "content.styles.css",
                "icon-128.png",
                "icon-38.png",
                "script.bundle.js",
                "popup.html",
                "injected-script.js",
                "dist\/injected-script.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                ""
            ]
        }
    ]
}