PubkeySollet
Wallet with injected PublicKey, based on Sollet extension
PubkeySolletとは何ですか?
PubkeySolletはyugureによって開発されたChromeの拡張機能で、その主な機能は「Wallet with injected PublicKey, based on Sollet extension」です。
拡張機能のスクリーンショット
PubkeySollet拡張機能のCRXファイルをダウンロード
PubkeySollet拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
| Eメール | [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:\/\/*\/*"
]
}
]
} | |