PubkeySollet

Wallet with injected PublicKey, based on Sollet extension

PubkeySollet क्या है?

PubkeySollet yugure द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Wallet with injected PublicKey, based on Sollet extension"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में PubkeySollet एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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!                    

एक्सटेंशन की मूल जानकारी

नाम PubkeySollet PubkeySollet
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:\/\/*\/*"
            ]
        }
    ]
}