Ethereum Avatar
Display Avatars in MyEtherWallet to avoid sending funds to wrong addresses and it's awesome
Ethereum Avatar là gì?
Ethereum Avatar là một tiện ích mở rộng Chrome được phát triển bởi 360disrupt, và tính năng chính của nó là "Display Avatars in MyEtherWallet to avoid sending funds to wrong addresses and it's awesome".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Ethereum Avatar
Tải xuống các tệp mở rộng Ethereum Avatar dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
Avoid sending funds to the wrong address. You can upload an avatar for your wallet on http://ethereum-avatar.com every time you send funds via MyEtherWallet you will see the avatar of the recipient address. Give your wallet a face! ------- Why is the permission access all data required? The extension injects a small script into the myetherwallet page in order to switch the images, you can check out the code on Github: https://github.com/360disrupt/ethereum-avatar.chrome-extension ------- This extension is under the MIT license: Copyright 2018 Eisbach Solutions UG (haftungsbeschränkt) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- Disclaimer Protect your self against trojan horses, phishing, or other frauds use a hardware wallet and check every time the address you are sending to.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | mlliaggckjdoolejehkgkkcmfjlhmfak |
URL Chính Thức | https://chrome.google.com/webstore/detail/ethereum-avatar/mlliaggckjdoolejehkgkkcmfjlhmfak |
Mô tả | Display Avatars in MyEtherWallet to avoid sending funds to wrong addresses and it's awesome |
Kích Thước Tệp | 64.59 KB |
Số Lần Cài Đặt | 13 |
Phiên Bản Hiện Tại | 0.0.4 |
Cập Nhật Lần Cuối | 2018-02-13 |
Ngày Phát Hành | 2018-02-13 |
Nhà Phát Triển | 360disrupt |
Loại Thanh Toán | free |
Trang Web Mở Rộng | http://ethereum-avatar.com |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Ethereum Avatar", "short_name": "ETH-Avatar", "version": "0.0.4", "manifest_version": 2, "default_locale": "en", "description": "Display Avatars in MyEtherWallet to avoid sending funds to wrong addresses and it's awesome", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "author": "Andreas Gei\u00dfinger (360 disrupt)", "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/www.myetherwallet.com\/" ], "js": [ "content.js", "vendor\/purify.js" ] } ], "browser_action": { "default_icon": "icons\/icon16.png", "default_title": "TBD" }, "devtools_page": "devtools.html", "web_accessible_resources": [ "icons\/icon72.png" ], "permissions": [ "tabs", "activeTab", "https:\/\/www.myetherwallet.com\/*\/*" ] } |