DPal:Wallet for DogeCoin

DogeCoin Wallet for Webapps

DPal:Wallet for DogeCoin란 무엇입니까?

DPal:Wallet for DogeCoin은(는) https://dpalwallet.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "DogeCoin Wallet for Webapps"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

DPal:Wallet for DogeCoin 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Dogecoin wallet For web3 world

Self-Custodial Dogcoin wallet

A browser extension based wallet to interact with the Doge blockchain. 

Your keys your doge, DPAL WALLET won't record the private key in the server.

And keep the phrase(12 words)/key safty in your own way it's necessary. You can use your own Phrase recovery the wallet at any time.

* Easy to tip and spend DOGE
* For web apps can throgh the injects API into every website's javascript context, so that make doge easily to buy things
* Now developer can build web3 app for doge with dpal                    

확장 프로그램 기본 정보

이름 DPal:Wallet for DogeCoin DPal:Wallet for DogeCoin
ID lmkncnlpeipongihbffpljgehamdebgi
공식 URL https://chromewebstore.google.com/detail/dpalwallet-for-dogecoin/lmkncnlpeipongihbffpljgehamdebgi
설명 DogeCoin Wallet for Webapps
파일 크기 1.59 MB
설치 횟수 81,235
현재 버전 1.2.17
최근 업데이트 2024-01-08
출시 날짜 2022-10-01
평점 4.17/5 총 63 개의 평점
개발자 https://dpalwallet.io
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://dpalwallet.io
도움말 페이지 URL https://github.com/dpalwallet/DPalWallet
개인정보 보호 정책 페이지 URL https://github.com/dpalwallet/DPalWallet/blob/main/Privacy_Policy.md
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "DPal:Wallet for DogeCoin",
    "description": "DogeCoin Wallet for Webapps",
    "version": "1.2.17",
    "manifest_version": 3,
    "icons": {
        "128": ".\/static\/logo-128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage",
        "alarms",
        "unlimitedStorage"
    ],
    "action": {
        "default_icon": {
            "128": ".\/static\/logo-128.png"
        },
        "Tooltip": "DPal",
        "default_title": "DPal",
        "default_popup": "index.html#\/main?popup=true"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "validaddress.js",
                "content.js"
            ],
            "css": [
                "tips.css"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "inject.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                ""
            ]
        }
    ]
}