Reef Chain Wallet Extension
Manage your Reef Chain accounts outside of dapps. Injects the accounts and allows signing transactions for a specific account.
What is Reef Chain Wallet Extension?
Reef Chain Wallet Extension is a Chrome extension developed by https://reef.io, and its main feature is "Manage your Reef Chain accounts outside of dapps. Injects the accounts and allows signing transactions for a specific account.".
Extension Screenshots
Download Reef Chain Wallet Extension Extension CRX File
Download Reef Chain Wallet Extension extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Reef Chain Wallet Extension |
ID | mjgkpalnahacmhkikiommfiomhjipgjn |
Official URL | https://chromewebstore.google.com/detail/reef-chain-wallet-extensi/mjgkpalnahacmhkikiommfiomhjipgjn |
Description | Manage your Reef Chain accounts outside of dapps. Injects the accounts and allows signing transactions for a specific account. |
File Size | 5.45 MB |
Installation Count | 10,000 |
Current Version | 1.0.21 |
Last Updated | 2023-11-16 |
Publish Date | 2021-11-16 |
Rating | 4.66/5 Total 29 Ratings |
Developer | https://reef.io |
[email protected] | |
Payment Type | free |
Extension Website | https://reef.io |
Help Page URL | https://discord.gg/reefchain |
Supported Languages | 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" } |