Reef Chain Wallet Extension
Manage your Reef Chain accounts outside of dapps. Injects the accounts and allows signing transactions for a specific account.
Co to jest Reef Chain Wallet Extension?
Reef Chain Wallet Extension to rozszerzenie Chrome opracowane przez https://reef.io, a jego główną funkcją jest „Manage your Reef Chain accounts outside of dapps. Injects the accounts and allows signing transactions for a specific account.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Reef Chain Wallet Extension
Pobierz pliki rozszerzeń Reef Chain Wallet Extension w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Reef wallet to create and manage your accounts and interact with dApps on Reef chain. Extension enables decentralised user experience where user manages her/his own keys and no user data is shared or collected.
Podstawowe informacje o rozszerzeniu
Nazwa | Reef Chain Wallet Extension |
ID | mjgkpalnahacmhkikiommfiomhjipgjn |
Oficjalny URL | https://chromewebstore.google.com/detail/reef-chain-wallet-extensi/mjgkpalnahacmhkikiommfiomhjipgjn |
Opis | Manage your Reef Chain accounts outside of dapps. Injects the accounts and allows signing transactions for a specific account. |
Rozmiar pliku | 5.45 MB |
Liczba instalacji | 10,000 |
Aktualna Wersja | 1.0.21 |
Ostatnia Aktualizacja | 2023-11-16 |
Data Publikacji | 2021-11-16 |
Ocena | 4.66/5 Łącznie 29 Oceny |
Deweloper | https://reef.io |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://reef.io |
Adres URL Strony Pomocy | https://discord.gg/reefchain |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "author": "Reef Chain", "description": "Manage your Reef Chain accounts outside of dapps. Injects the accounts and allows signing transactions for a specific account.", "homepage_url": "https:\/\/github.com\/reef-defi\/browser-extension", "name": "Reef Chain Wallet Extension", "short_name": "Reef Chain Extension", "manifest_version": 2, "permissions": [ "storage", "tabs" ], "background": { "scripts": [ "background.js" ], "persistent": true }, "browser_action": { "default_title": "Reef Chain Extension", "default_popup": "index.html" }, "content_scripts": [ { "js": [ "content.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "all_frames": true, "run_at": "document_start" } ], "icons": { "16": "images\/icon-16.png", "32": "images\/icon-32.png", "48": "images\/icon-48.png", "64": "images\/icon-64.png", "128": "images\/icon-128.png" }, "web_accessible_resources": [ "page.js" ], "content_security_policy": "script-src 'self' blob: 'unsafe-eval' 'wasm-eval'; object-src 'self'", "version": "1.0.21" } |