Waves Enterprise Wallet
Manage your private keys securely
Waves Enterprise Walletคืออะไร?
Waves Enterprise Wallet เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Waves Platform และคุณลักษณะหลักของมันคือ "Manage your private keys securely"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Waves Enterprise Wallet
ดาวน์โหลดไฟล์ส่วนขยาย Waves Enterprise Wallet ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Waves Enterprise Wallet is an extension that allows you to interact with Waves Enterprise-enabled web services securely from your Chrome browser. SEEDs and private keys are encrypted and stored within the extension and cannot be accessed by the dApps and services on the web, giving you peace of mind that your funds are always safe from hackers and malicious sites. Completing a transaction doesn’t require entering any sensitive information. Waves Enterprise Wallet is designed for convenience, so you can sign transactions with just a couple of clicks. Users can create multiple wallets and switch between them easily, and if you ever forget the password to the account you can recover it from your SEED, as normal. You can view the source code for Waves Enterprise Wallet on GitHub, or check it like any other Chrome extension. https://github.com/waves-enterprise/we-wallet
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | nhihjlnjgibefgjhobhcphmnckoogdea |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/waves-enterprise-wallet/nhihjlnjgibefgjhobhcphmnckoogdea |
คำอธิบาย | Manage your private keys securely |
ขนาดไฟล์ | 3.31 MB |
จำนวนการติดตั้ง | 574 |
เวอร์ชันปัจจุบัน | 1.2.1 |
อัปเดตครั้งล่าสุด | 2022-12-26 |
วันที่เผยแพร่ | 2021-07-08 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | Waves Platform |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://wavesenterprise.com/ |
URL หน้านโยบายความเป็นส่วนตัว | https://s3.eu-central-1.amazonaws.com/waves.tech/Privacy_Policy_Waves_Keeper_fin_DL_Tech_9ce50e1fe0.pdf |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "short_name": "__MSG_appName__", "version": "1.2.1", "manifest_version": 2, "author": "[email protected]", "description": "__MSG_appDescription__", "commands": { "_execute_browser_action": { "suggested_key": { "windows": "Alt+Shift+K", "mac": "Alt+Shift+K", "chromeos": "Alt+Shift+K", "linux": "Alt+Shift+K" } } }, "icons": { "16": "images\/icon_16.png", "20": "images\/icon_20.png", "24": "images\/icon_24.png", "30": "images\/icon_30.png", "42": "images\/icon_42.png", "44": "images\/icon_44.png", "50": "images\/icon_50.png", "54": "images\/icon_54.png", "70": "images\/icon_70.png", "90": "images\/icon_90.png", "120": "images\/icon_120.png", "128": "images\/icon_128.png", "150": "images\/icon_150.png", "210": "images\/icon_210.png", "270": "images\/icon_270.png" }, "default_locale": "en", "background": { "scripts": [ "background.js" ], "persistent": true }, "browser_action": { "default_icon": { "16": "images\/icon_16.png", "20": "images\/icon_20.png", "24": "images\/icon_24.png", "30": "images\/icon_30.png", "42": "images\/icon_42.png", "44": "images\/icon_44.png", "50": "images\/icon_50.png", "54": "images\/icon_54.png", "70": "images\/icon_70.png", "90": "images\/icon_90.png", "120": "images\/icon_120.png", "128": "images\/icon_128.png", "150": "images\/icon_150.png", "210": "images\/icon_210.png", "270": "images\/icon_270.png" }, "default_title": "Waves Enterprise Wallet", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "file:\/\/*\/*", "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "contentscript.js" ], "run_at": "document_start", "all_frames": true } ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "permissions": [ "storage", "unlimitedStorage", "clipboardWrite", "idle" ], "web_accessible_resources": [ "inpage.js" ] } |