Navio Wallet

Navio Wallet Chrome Extension

Navio Wallet란 무엇입니까?

Navio Wallet은(는) nav.web.store.1에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Navio Wallet Chrome Extension"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Navio Wallet 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Navio Wallet is an extension for accessing Navio enabled decentralized applications, or "DApps" in your Chrome browser!

The extension injects the Navio web3 API into every website's javascript context, so that dapps can read from the blockchain.

With Navio wallet, you can create your Private NFT collections and mint your NFTs.

Navio wallet also lets the user create and manage their own identities, so when a DApp wants to perform a transaction and write to the blockchain, the user gets a secure interface to review the transaction, before approving or rejecting it.

Because it adds functionality to the normal browser context, Navio wallet requires the permission to read and write to any webpage. You can always "view the source" of Navio wallet the way you do any Chrome extension, or view the source code on Github:
https://github.com/navcoin/navcoin-wallet-chrome-extension                    

확장 프로그램 기본 정보

이름 Navio Wallet Navio Wallet
ID mehadhhadnkkdajgmdoebkgfldobcded
공식 URL https://chromewebstore.google.com/detail/navio-wallet/mehadhhadnkkdajgmdoebkgfldobcded
설명 Navio Wallet Chrome Extension
파일 크기 9.17 MB
설치 횟수 34
현재 버전 1.0.12
최근 업데이트 2023-09-25
출시 날짜 2022-06-22
평점 5.00/5 총 1 개의 평점
개발자 nav.web.store.1
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.nav.io
도움말 페이지 URL https://www.nav.io
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Navio Wallet",
    "description": "Navio Wallet Chrome Extension",
    "version": "1.0.12",
    "manifest_version": 3,
    "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtMJgF7cQvZh8ITFSiM31pjrsOTg+H+aUlZhvtq5peMswQZYVdkeRAw60CrLq5rgityfZs95TitkUkybQXQsC7kSM8ecBfuKZ1elZ1oJYiyvgMa3n8uEhqjAHouAxah54qhTCiGbxj4gzY6ENnAKoJ0+v+JTT1NO4sBCj4oYYy+c7Jn2T772nKSnJ1Fzb3AM1xQSkJzTb8XlXamv\/AoWkiCmWZBfcRa7krosPcpsxh68RBsOLijtGA2+I2P8S7LisqfT8zou05eC71wdX4bpS5ukIdim76q\/AOI0m+mxZGGgy3e\/Pu7r5kCE4XtLYPDnbNE2+B4b\/NL9NDgvxka4wPQIDAQAB",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "tabs",
        "activeTab",
        "background",
        "scripting",
        "notifications"
    ],
    "action": {
        "default_popup": "index.html"
    },
    "icons": {
        "16": "images\/icons\/favicon-16x16.png",
        "48": "images\/icons\/favicon-48x48.png",
        "128": "images\/icons\/favicon-128x128.png"
    },
    "externally_connectable": {
        "matches": [],
        "ids": [
            "*"
        ]
    },
    "host_permissions": [
        ""
    ]
}