Narwallets V4

NEAR protocol wallet

什么是Narwallets V4?

Narwallets V4是由Narwallets.com开发的Chrome扩展程序,该扩展的主要功能是“NEAR protocol wallet”。

扩展截图

screenshot
screenshot
screenshot

下载Narwallets V4扩展crx文件

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

扩展使用说明

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