PubkeySollet

Wallet with injected PublicKey, based on Sollet extension

O que é PubkeySollet?

PubkeySollet é uma extensão do Chrome desenvolvida por yugure, e sua principal característica é "Wallet with injected PublicKey, based on Sollet extension".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão PubkeySollet

Baixe arquivos de extensão PubkeySollet no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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!                    

Informações Básicas da Extensão

Nome PubkeySollet PubkeySollet
ID pjligelplfpbmdlachdpefnfdokedfea
URL Oficial https://chromewebstore.google.com/detail/pubkeysollet/pjligelplfpbmdlachdpefnfdokedfea
Descrição Wallet with injected PublicKey, based on Sollet extension
Tamanho do Arquivo 103 KB
Contagem de Instalações 164
Versão Atual 0.1.0
Última Atualização 2023-12-25
Data de Publicação 2023-01-09
Desenvolvedor yugure
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/everlastingsong/pubkey-sollet
Idiomas Suportados 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:\/\/*\/*"
            ]
        }
    ]
}