PubkeySollet
Wallet with injected PublicKey, based on Sollet extension
PubkeySollet란 무엇입니까?
PubkeySollet은(는) yugure에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Wallet with injected PublicKey, based on Sollet extension"입니다.
확장 프로그램 스크린샷
PubkeySollet 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
PubkeySollet is a wallet that allows you to specify the public key of the wallet when connecting to dApps. - public key only! no secret key! - wallet for use on the Solana network - wallet for developers and those who support dApps - connect as WalletStandard compatible wallet or Sollet extension - signing transactions is always rejected - transactions are dumped to the console - both transaction and versioned transaction are supported - open source!
확장 프로그램 기본 정보
이름 | |
ID | pjligelplfpbmdlachdpefnfdokedfea |
공식 URL | https://chromewebstore.google.com/detail/pubkeysollet/pjligelplfpbmdlachdpefnfdokedfea |
설명 | Wallet with injected PublicKey, based on Sollet extension |
파일 크기 | 103 KB |
설치 횟수 | 164 |
현재 버전 | 0.1.0 |
최근 업데이트 | 2023-12-25 |
출시 날짜 | 2023-01-09 |
개발자 | yugure |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/everlastingsong/pubkey-sollet |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "PubkeySollet", "description": "Wallet with injected PublicKey, based on Sollet extension", "author": "[email protected]", "version": "0.1.0", "manifest_version": 3, "icons": { "16": "icon\/size16.png", "32": "icon\/size32.png", "48": "icon\/size48.png", "128": "icon\/size128.png", "512": "icon\/size512.png" }, "permissions": [ "storage" ], "action": { "default_popup": "popup.html", "default_icon": { "16": "icon\/size16.png", "32": "icon\/size32.png", "48": "icon\/size48.png", "128": "icon\/size128.png", "512": "icon\/size512.png" } }, "content_scripts": [ { "matches": [ "file:\/\/*\/*", "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/contentscript.js", "js\/popup.js" ], "run_at": "document_start", "all_frames": true } ], "web_accessible_resources": [ { "resources": [ "js\/bundle.js" ], "matches": [ "file:\/\/*\/*", "http:\/\/*\/*", "https:\/\/*\/*" ] } ] } |