EVER Wallet

Manage Everscale wallets and access dApps directly from your browser

Τι είναι το EVER Wallet;

Το EVER Wallet είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://broxus.com, και η κύρια λειτουργία του είναι "Manage Everscale wallets and access dApps directly from your browser".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης EVER Wallet

Λήψη αρχείων επέκτασης EVER Wallet σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        FOR USERS
EVER Wallet is a Google Chrome extension that lets you manage your seed phrases, private and public keys, and wallets in a secure fashion without leaving your favorite browser.
Import existing keys or create new ones; choose popular wallet contracts to use; manage permissions you provide to dApps (DEXes, bridges, multisig wallets, etc.); protect your data with encrypted local key storage.
EVER Wallet extension is a fully remastered version of the famous desktop Crystal Wallet created by the Broxus team. Enjoy a new convenient interface with the same speed and security!

FOR DAPPS
EVER Wallet injects the RPC API object into every website’s DOM context so that the distributed applications can read from the blockchain and interact with smart contracts. Be it a decentralized exchange, browser game, cross-chain bridge, or multi-signature wallet, EVER Wallet will serve you as a lightweight, configurable, and reliable Everscale client.

PRIVACY AND PERMISSIONS
The extension does not and will not collect any data from you, so we will be grateful if you provide us your feedback in the Chrome store, on our Github page, Telegram chat, or send us an e-mail. See the “Useful links” section below.
However, it will require your permission to read and write to any webpage, as it enhances the functionality of the normal browser context. You can always view the source code of Crystal Wallet on Github.

USEFUL LINKS
Extension source code: https://github.com/broxus/ever-wallet-browser-extension
Everscale (ex Free TON) site: https://everscale.network
Support chat in Telegram: https://t.me/broxus_chat                    

Βασικές Πληροφορίες Επέκτασης

Όνομα EVER Wallet EVER Wallet
ID cgeeodpfagjceefieflmdfphplkenlfk
Επίσημο URL https://chromewebstore.google.com/detail/ever-wallet/cgeeodpfagjceefieflmdfphplkenlfk
Περιγραφή Manage Everscale wallets and access dApps directly from your browser
Μέγεθος Αρχείου 3.97 MB
Αριθμός Εγκαταστάσεων 25,546
Τρέχουσα Έκδοση 0.3.37
Τελευταία Ενημέρωση 2024-02-12
Ημερομηνία Δημοσίευσης 2021-05-02
Αξιολόγηση 4.73/5 Συνολικά 78 Αξιολογήσεις
Προγραμματιστής https://broxus.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://everwallet.net/
Διεύθυνση URL της Σελίδας Βοήθειας https://t.me/broxus_chat
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "EVER Wallet",
    "version": "0.3.37",
    "description": "Manage Everscale wallets and access dApps directly from your browser",
    "minimum_chrome_version": "102",
    "action": {
        "default_title": "EVER Wallet",
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "js\/worker.js"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png",
        "256": "icon256.png"
    },
    "permissions": [
        "storage",
        "unlimitedStorage",
        "clipboardWrite",
        "activeTab",
        "notifications",
        "alarms"
    ],
    "content_scripts": [
        {
            "matches": [
                "file:\/\/*\/*",
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/contentscript.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "\/js\/*",
                "\/assets\/*",
                "phishing-warning.html"
            ],
            "matches": [
                ""
            ]
        }
    ]
}